/*
Theme Name: Save Point Glossy
Theme URI: https://example.com
Author: Save Point Tech Repair
Description: A mid-2000s Web 2.0 glossy theme for Save Point Tech Repair. Rounded corners, gradient buttons, boxed layout, sidebar - the classic 2007-2010 look, with full Customizer control over phone, hours, payment links (Cash App, Venmo, PayPal, Zelle) and review links (Google, Facebook).
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: savepoint-glossy
Tags: blue, two-columns, right-sidebar, custom-menu
*/

/* ---------- Fonts ---------- */
/* Rounded font (banner slogan, headings) */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

/* Logo/title font. Uses your installed copy of Vudotronic if this computer
   has it; site visitors get the file from fonts/vudotronic.otf inside the
   theme folder. Falls back to Trebuchet if neither is available. */
@font-face {
	font-family: 'Vudotronic';
	src: local('Vudotronic'), url('fonts/vudotronic.otf') format('opentype');
	font-display: swap;
}

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(to bottom, #b8d8f0 0%, #dcebf7 300px, #e9f2fa 100%) fixed;
}

a { color: #1e6fc0; }
a:hover { color: #0d4f94; }
img { max-width: 100%; height: auto; }

/* ---------- Boxed layout ---------- */
#page-wrap {
	width: 960px;
	max-width: 96%;
	margin: 18px auto;
	background: #fff;
	border: 1px solid #9cc0de;
	border-radius: 10px;
	box-shadow: 0 3px 12px rgba(30, 80, 130, 0.25);
	overflow: hidden;
}

/* ---------- Header ---------- */
#masthead {
	padding: 16px 30px;
	background: linear-gradient(to bottom, #12508f 0%, #3f93e8 48%, #1a63b0 100%);
	border-bottom: 3px solid #0d3f73;
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
}

#masthead::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 48%;
	background: linear-gradient(to bottom, rgba(255,255,255,0.30), rgba(255,255,255,0.04));
	border-radius: 0 0 50% 50% / 0 0 18px 18px;
	pointer-events: none;
}

.site-logo { position: relative; z-index: 2; flex-shrink: 0; }
.site-logo img, .site-logo svg { height: 72px; width: auto; display: block; }

.site-title { position: relative; z-index: 2; }
.site-title a { text-decoration: none; display: block; }

.title-line1 {
	display: block;
	font-family: 'Vudotronic', "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-size: 44px;
	line-height: 1;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	text-shadow: 2px 3px 4px rgba(0,0,0,0.45);
}

.title-line2 {
	display: block;
	font-family: 'Vudotronic', "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-size: 29px;
	line-height: 0.7;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.45);
}

/* Social icons live in the right side of the nav bar.
   Selectors are prefixed with #site-nav to fully override the
   generic nav-link styling (padding, borders, hover gradient). */
#site-nav .social-icons {
	margin-left: auto;
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 0 12px;
}

#site-nav .social-icons a {
	display: block;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: none;
}

#site-nav .social-icons a:hover { background: none; }
#site-nav .social-icons svg { width: 28px; height: 28px; display: block; border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,0.4); }
#site-nav .social-icons a:hover svg { filter: brightness(1.15); }

/* ---------- Nav bar ---------- */
#site-nav {
	background: linear-gradient(to bottom, #4a4a4a 0%, #2e2e2e 50%, #1c1c1c 51%, #303030 100%);
	border-bottom: 2px solid #111;
	display: flex;
	align-items: center;
}

#site-nav ul.menu, #site-nav > div > ul { flex: 1; }

#site-nav ul { list-style: none; }
#site-nav ul.menu > li, #site-nav > div > ul > li { float: left; position: relative; }
#site-nav ul::after { content: ""; display: block; clear: both; }

#site-nav a {
	display: block;
	padding: 11px 20px;
	color: #eee;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	border-right: 1px solid #111;
	border-left: 1px solid #555;
}

#site-nav a:hover, #site-nav .current-menu-item > a, #site-nav .current_page_item > a {
	background: linear-gradient(to bottom, #5cb0f0 0%, #1e6fc0 100%);
	color: #fff;
}

#site-nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: #2e2e2e;
	z-index: 50;
	box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}
#site-nav li:hover > ul { display: block; }
#site-nav ul ul li { float: none; }
#site-nav ul ul a { border: none; border-bottom: 1px solid #1c1c1c; }

/* Right-aligned menu item: give the menu item the CSS class "nav-right"
   in Appearance > Menus (enable CSS Classes under Screen Options). */
#site-nav li.nav-right { float: right; }
#site-nav li.nav-right a { border-right: none; border-left: 1px solid #111; }

/* ---------- Banner slogan (header right side) ---------- */
.header-slogan {
	position: relative;
	z-index: 2;
	margin-left: auto;
	padding-right: 6px;
	text-align: center;
	font-family: 'Comfortaa', "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: 700;
	color: #ffe97a;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.45);
}

.header-slogan .slogan-line1,
.header-slogan .slogan-line2 {
	display: block;
	font-size: 22px;
	line-height: 1.4;
	white-space: nowrap;
}

/* ---------- Glossy buttons ---------- */
.glossy-btn {
	display: inline-block;
	padding: 10px 26px;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #fff !important;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
	background: linear-gradient(to bottom, #6fc040 0%, #4a9e1e 50%, #3d8a15 51%, #4a9e1e 100%);
	border: 1px solid #35770f;
	border-radius: 25px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 4px rgba(0,0,0,0.25);
	cursor: pointer;
}

.glossy-btn:hover { filter: brightness(1.08); }

.glossy-btn.blue {
	background: linear-gradient(to bottom, #5cb0f0 0%, #2e86d6 50%, #1e6fc0 51%, #2a7ecb 100%);
	border-color: #145a9e;
}

/* ---------- Content columns ---------- */
#content-area { padding: 0 20px 20px; }
#content-area::after { content: ""; display: block; clear: both; }

#primary { float: left; width: 640px; max-width: 100%; }
#secondary { float: right; width: 260px; max-width: 100%; }

@media (max-width: 700px) {
	#primary, #secondary { float: none; width: 100%; }
	.header-phone { position: static; text-align: left; margin-top: 10px; }
}

/* ---------- Service boxes ---------- */
.service-boxes { margin: 0 20px 20px; }
.service-boxes::after { content: ""; display: block; clear: both; }

.service-box {
	float: left;
	width: 31.5%;
	margin-right: 2.75%;
	padding: 18px;
	background: linear-gradient(to bottom, #ffffff 0%, #eef5fb 100%);
	border: 1px solid #c3d9ec;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	min-height: 150px;
}

.service-box:last-child { margin-right: 0; }

.service-box h3 {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	color: #1e5f9e;
	font-size: 16px;
	border-bottom: 1px dotted #b5d3ea;
	padding-bottom: 6px;
	margin-bottom: 8px;
}

@media (max-width: 700px) {
	.service-box { float: none; width: 100%; margin: 0 0 12px; min-height: 0; }
}

/* First content block after the nav needs its own top gap
   (the old hero used to provide this spacing). */
#site-nav + *,
#page-wrap .sticky-header + * { margin-top: 20px; }

/* ---------- Section panels ---------- */
.panel {
	margin: 0 20px 20px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #c3d9ec;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.panel h2 {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: #1e5f9e;
	text-shadow: 1px 1px 0 #fff;
	padding-bottom: 8px;
	margin-bottom: 14px;
	border-bottom: 2px solid #dcecf9;
}

/* ---------- Payment buttons ---------- */
.payment-buttons { text-align: center; }

.pay-btn {
	display: inline-block;
	margin: 6px 8px;
	padding: 12px 28px;
	min-width: 150px;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #fff !important;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
	border-radius: 8px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.25);
	border: 1px solid rgba(0,0,0,0.3);
}

.pay-btn:hover { filter: brightness(1.08); }

.pay-cashapp { background: linear-gradient(to bottom, #2ee65c 0%, #00d632 50%, #00b82b 51%, #00c92e 100%); }
.pay-venmo   { background: linear-gradient(to bottom, #64b4e8 0%, #3d95ce 50%, #2f80b8 51%, #3d95ce 100%); }
.pay-paypal  { background: linear-gradient(to bottom, #2a5db8 0%, #003087 50%, #00256b 51%, #003087 100%); }

.zelle-note {
	margin-top: 12px;
	padding: 10px;
	background: #f4efff;
	border: 1px dashed #6d1ed4;
	border-radius: 8px;
	color: #4a1494;
	font-weight: bold;
}

/* ---------- Review buttons ---------- */
.review-buttons { text-align: center; }

.review-btn {
	display: inline-block;
	margin: 6px 8px;
	padding: 12px 28px;
	min-width: 190px;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #fff !important;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
	border-radius: 8px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.25);
	border: 1px solid rgba(0,0,0,0.3);
}

.review-btn:hover { filter: brightness(1.08); }

.review-google   { background: linear-gradient(to bottom, #f0574a 0%, #db4437 50%, #c53727 51%, #db4437 100%); }
.review-facebook { background: linear-gradient(to bottom, #5b7bd5 0%, #3b5998 50%, #2f477a 51%, #3b5998 100%); }

/* ---------- Posts & pages ---------- */
.entry {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #c3d9ec;
}

.entry-title, .page-title {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 22px;
	color: #1e5f9e;
	margin-bottom: 4px;
}

.entry-title a { text-decoration: none; }

.entry-meta {
	font-size: 11px;
	color: #8aa4bd;
	margin-bottom: 10px;
}

.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 12px; }
.entry-content ul, .entry-content ol { padding-left: 24px; }
.entry-content h2, .entry-content h3 { color: #1e5f9e; margin: 16px 0 8px; font-family: "Trebuchet MS", Helvetica, Arial, sans-serif; }

/* ---------- Sidebar ---------- */
.widget {
	margin-bottom: 18px;
	padding: 16px;
	background: linear-gradient(to bottom, #f5faff 0%, #e6f0f9 100%);
	border: 1px solid #c3d9ec;
	border-radius: 8px;
}

.widget-title {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #fff;
	background: linear-gradient(to bottom, #5cb0f0 0%, #1e6fc0 100%);
	padding: 6px 12px;
	margin: -16px -16px 12px;
	border-radius: 7px 7px 0 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.widget ul { list-style: none; }
.widget li { padding: 4px 0; border-bottom: 1px dotted #c3d9ec; }
.widget li:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
#colophon {
	padding: 18px 30px;
	background: linear-gradient(to bottom, #4a4a4a 0%, #2a2a2a 100%);
	color: #bbb;
	font-size: 11px;
	text-align: center;
	border-top: 3px solid #1e6fc0;
}

#colophon a { color: #7db9e8; }
#colophon .footer-line1 { font-size: 13px; margin-bottom: 4px; }
#colophon .footer-line1 strong { color: #bbb; font-weight: normal; }

@media (max-width: 700px) {
	#masthead { flex-wrap: wrap; justify-content: center; padding: 8px 12px; gap: 0 10px; }
	.social-icons { margin-left: 0; }
	.site-logo img, .site-logo svg { height: 44px; }
	.title-line1 { font-size: 28px; }
	.title-line2 { font-size: 15px; letter-spacing: 4px; }

	/* Slogan: compact single line tucked under the logo/title */
	.header-slogan {
		margin: 3px auto 0;
		padding-right: 0;
		flex-basis: 100%;
	}
	.header-slogan .slogan-line1,
	.header-slogan .slogan-line2 {
		display: inline;
		font-size: 12px;
		white-space: normal;
	}
	.header-slogan .slogan-line1::after { content: " "; }

	/* Compact footer */
	#colophon { padding: 9px 14px; font-size: 10px; }
	#colophon .footer-line1 { font-size: 11px; margin-bottom: 2px; }

	/* Full-bleed page + sticky header on mobile */
	#page-wrap {
		max-width: 100%;
		margin: 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
		border-top: none;
		overflow: visible;
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		min-height: 100dvh;
	}
	#page-wrap > #colophon { margin-top: auto; }
	.sticky-header {
		position: sticky;
		top: 0;
		z-index: 200;
		box-shadow: 0 2px 8px rgba(0,0,0,0.35);
	}

	/* Nav: one slim row, all six tabs; social icons hidden on mobile */
	#site-nav .menu { display: flex; width: 100%; }
	#site-nav .menu > li { flex: 1 1 auto; text-align: center; float: none; }
	#site-nav .menu > li > a {
		padding: 8px 2px;
		font-size: 11px;
		border-left: none;
		border-right: 1px solid rgba(0,0,0,0.45);
	}
	#site-nav .menu > li:last-child > a { border-right: none; }
	#site-nav .social-icons { display: none; }
}

@media (max-width: 380px) {
	.title-line1 { font-size: 24px; }
	.title-line2 { font-size: 13px; letter-spacing: 3px; }
	#site-nav .menu > li > a { font-size: 10px; padding: 7px 1px; }
}

/* ---------- Comments / misc ---------- */
.comment-list { list-style: none; margin-bottom: 20px; }
.comment-list li { padding: 12px; margin-bottom: 10px; background: #f5faff; border: 1px solid #c3d9ec; border-radius: 8px; }

input[type="text"], input[type="email"], input[type="url"], textarea {
	padding: 6px;
	border: 1px solid #c3d9ec;
	border-radius: 4px;
	font-family: inherit;
	width: 100%;
	max-width: 400px;
}

input[type="submit"] {
	padding: 8px 20px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(to bottom, #5cb0f0 0%, #1e6fc0 100%);
	border: 1px solid #145a9e;
	border-radius: 20px;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.screen-reader-text { position: absolute; left: -9999px; }
.alignleft { float: left; margin: 0 15px 10px 0; }
.alignright { float: right; margin: 0 0 10px 15px; }
.aligncenter { display: block; margin: 10px auto; }

/* ---------- How It Works steps ---------- */
.steps { display: flex; gap: 16px; }

.step { flex: 1; text-align: center; padding: 10px 8px; }

.step-num {
	display: inline-block;
	width: 44px; height: 44px; line-height: 44px;
	font-size: 22px; font-weight: bold; color: #fff;
	background: linear-gradient(to bottom, #3f93e8 0%, #1a63b0 100%);
	border: 2px solid #12508f;
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 3px rgba(0,0,0,0.2);
	margin-bottom: 8px;
}

.step h4 { font-family: "Trebuchet MS", Helvetica, Arial, sans-serif; color: #1e5f9e; font-size: 15px; margin-bottom: 4px; }
.step p { font-size: 12.5px; color: #555; }

@media (max-width: 700px) {
	.steps { flex-direction: column; }
}

/* ---------- Facebook feed panel ---------- */
.fb-feed-wrap { text-align: center; }
.fb-feed-wrap iframe { max-width: 100%; }
}

/* ---------- Page titles inside panels ---------- */
.panel .page-title {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 24px;
	color: #1e5f9e;
	text-shadow: 1px 1px 0 #fff;
	padding-bottom: 8px;
	margin-bottom: 14px;
	border-bottom: 1px solid #dcecf9;
}

/* ---------- Services page ---------- */
.svc-intro { font-size: 14px; }

.svc-cat h2 .svc-tag {
	font-size: 12px;
	font-weight: normal;
	color: #8aa4bb;
	float: right;
	font-style: italic;
	text-shadow: none;
}

@media (max-width: 700px) {
	.svc-cat h2 .svc-tag {
		float: none;
		display: block;
		margin-top: 3px;
		font-size: 11.5px;
	}
}

.svc-blurb { margin-bottom: 12px; color: #555; }

.svc-list { display: flex; flex-wrap: wrap; }

.svc-list li {
	list-style: none;
	width: 50%;
	padding: 5px 0 5px 24px;
	position: relative;
	font-size: 13px;
	border-bottom: 1px dotted #dcecf9;
}

.svc-list li::before {
	content: "\2713";
	position: absolute;
	left: 4px;
	color: #4a9e1e;
	font-weight: bold;
}

@media (max-width: 700px) {
	.svc-list li { width: 100%; }
}

.svc-cta { text-align: center; }
.svc-cta p { margin-bottom: 14px; }

/* ---------- Contact page ---------- */
.contact-cta { text-align: center; }
.contact-cta .contact-lead { font-size: 15px; margin-bottom: 16px; }
.contact-cta .contact-fb-btn { font-size: 17px; padding: 12px 28px; }
.contact-note { font-size: 12.5px; color: #8aa4bb; margin-top: 10px; font-style: italic; }
.contact-tips li { width: 100%; }

.contact-cols {
	display: flex;
	gap: 20px;
	margin: 0 20px 20px;
	align-items: stretch;
}
.contact-cols .panel {
	flex: 1;
	min-width: 0;
	margin: 0;
}
@media (max-width: 700px) {
	.contact-cols { flex-direction: column; }
}

/* Form styling - covers Contact Form 7 markup and plain forms alike */
.contact-form label {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #1e5f9e;
	margin: 12px 0 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
	display: block;
	width: 100%;
	max-width: 520px;
	padding: 8px 10px;
	font-size: 13px;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	color: #333;
	background: #fdfefe;
	border: 1px solid #b5d3ea;
	border-radius: 4px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #3f93e8;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.08), 0 0 4px rgba(63,147,232,0.5);
}

.contact-form textarea { height: 130px; resize: vertical; }

/* Submit buttons (CF7 renders input[type=submit]) get the glossy treatment */
.contact-form input[type="submit"],
.contact-form button[type="submit"],
.contact-form .glossy-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 9px 22px;
	font-size: 14px;
	font-weight: bold;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	color: #fff;
	text-shadow: 0 -1px 1px rgba(0,0,0,0.35);
	background: linear-gradient(to bottom, #3f93e8 0%, #1a63b0 48%, #12508f 52%, #2a7ccc 100%);
	border: 1px solid #0d3f73;
	border-radius: 6px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 2px 4px rgba(0,0,0,0.3);
	cursor: pointer;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
	background: linear-gradient(to bottom, #55a5f5 0%, #2a73c0 48%, #1a5c9c 52%, #3a8cdc 100%);
}

.contact-form .form-note,
.contact-form .wpcf7-response-output {
	font-size: 12px;
	color: #8aa4bb;
	font-style: italic;
	margin-top: 8px;
}

/* ---------- Reviews page ---------- */
/* facebook recommend header (mirrors google widget header) */
.fb-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fb-header .fb-logo { font-size: 22px; font-weight: bold; font-family: Arial, sans-serif; color: #1877f2; letter-spacing: -0.5px; }
.fb-header .fb-score { font-size: 26px; font-weight: bold; color: #333; }
.fb-header .fb-rec { color: #1877f2; font-weight: bold; font-size: 14px; }
.fb-header .fb-count { font-size: 12px; color: #8aa4bb; }

.review-cta { text-align: center; }
.review-cta p { margin-bottom: 14px; }

.testimonials { display: flex; flex-wrap: wrap; gap: 16px; }

.testimonial {
	flex: 1 1 calc(50% - 8px);
	min-width: 260px;
	padding: 16px 18px;
	background: #f4f9fd;
	border: 1px solid #c3d9ec;
	border-radius: 8px;
	box-shadow: inset 0 1px 0 #fff;
}

.testimonial .recommends {
	color: #1877f2;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 8px;
}

.testimonial .recommends svg { vertical-align: -2px; margin-right: 5px; }

.testimonial p { font-size: 13px; color: #444; font-style: italic; margin-bottom: 10px; }

.testimonial .who { font-size: 12px; font-weight: bold; color: #1e5f9e; font-style: normal; }
.testimonial .who span { font-weight: normal; color: #8aa4bb; }

/* ---------- Payment page tiles & QR modals ---------- */
.pay-intro { margin-bottom: 18px; }

.pay-tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 520px;
	margin: 0 auto;
}

.pay-tile {
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: center;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
}

.pay-tile-logo {
	display: block;
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.25);
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.pay-tile:hover .pay-tile-logo {
	transform: scale(1.03);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pay-tile:active .pay-tile-logo { transform: scale(0.98); }


@media (max-width: 480px) {
	.pay-tiles { gap: 12px; }
}

.pay-modal { position: fixed; inset: 0; z-index: 1000; }

.pay-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 50, 0.65);
}

.pay-modal-box {
	position: relative;
	width: calc(100% - 32px);
	max-width: 340px;
	margin: 8vh auto 0;
	padding: 24px 28px 26px;
	text-align: center;
	background: #fff;
	border: 1px solid #c3d9ec;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.pay-modal-box h3 {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 19px;
	color: #1e5f9e;
	margin-bottom: 14px;
}

.pay-modal-qr {
	display: block;
	width: 220px;
	max-width: 100%;
	height: auto;
	aspect-ratio: 1;
	margin: 0 auto 14px;
	border: 1px solid #dcecf9;
	border-radius: 6px;
}

.pay-modal-noqr { color: #8aa4bb; font-style: italic; margin-bottom: 14px; }

.pay-modal-link { display: inline-block; }

.pay-modal-info { font-size: 15px; font-weight: bold; color: #1e5f9e; }

.pay-modal-close {
	position: absolute;
	top: 8px;
	right: 12px;
	font-size: 24px;
	line-height: 1;
	color: #8aa4bb;
	background: none;
	border: none;
	cursor: pointer;
}
.pay-modal-close:hover { color: #1e5f9e; }

/* ---------- About page ---------- */
.about-photo-row { display: flex; gap: 20px; align-items: flex-start; }

.about-photo-img {
	flex: 0 0 260px;
	width: 260px;
	height: 260px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #c3d9ec;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.about-photo-row .about-text { flex: 1; min-width: 0; }

@media (max-width: 700px) {
	.about-photo-row { flex-direction: column; }
	.about-photo-img { width: 75%; margin: 0 auto; flex: none; height: auto; max-height: 315px; }
}
