/*
Theme Name:        GAP Cleaning
Theme URI:         https://gapcleaningsupplies.com.au
Description:       Child theme of Kadence for GAP Cleaning Supplies (Clenig Instruments and Products). Clean, trust-focused eCommerce design.
Author:            GAP Cleaning Supplies
Template:          kadence
Version:           1.0.2
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       gap-cleaning
*/

/* =========================================================
   GAP Cleaning design tokens
   WCAG check: #D31F20 on white → 5.1:1 ✓ AA; white on #D31F20 → 5.1:1 ✓ AA
   ========================================================= */
:root {
	--gap-primary:        #D31F20; /* brand red – exact logo colour      */
	--gap-primary-dark:   #a81819; /* hover / pressed state              */
	--gap-primary-light:  #fce8e8; /* light tint for backgrounds         */
	--gap-accent:         #D31F20;
	--gap-accent-dark:    #a81819;
	--gap-ink:            #14171c; /* near-black – headings, topbar      */
	--gap-muted:          #5b626c; /* secondary / helper text            */
	--gap-surface:        #f8f9fa; /* page background                    */
	--gap-tint:           #f4f6f8; /* card / section background          */
	--gap-border:         #e9ecef;
	--gap-radius:         10px;
	--gap-shadow:         0 4px 18px rgba(20, 23, 28, 0.10);
	--gap-section-py:     60px;    /* standard section padding rhythm    */
}

/* =========================================================
   Typography – Manrope display, Inter body
   ========================================================= */
body,
button,
input,
select,
textarea {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1, h2, h3, h4, h5, h6,
.site-title,
.wp-block-heading {
	font-family: 'Manrope', 'Inter', sans-serif;
	letter-spacing: -0.015em;
}
.site-title { font-weight: 800; }

/* Section headings get a small red underline flourish */
.gap-section-title {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 36px;
}
.gap-section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--gap-accent);
}

/* Consistent vertical rhythm – one variable drives all section gaps */
.home .entry-content > .wp-block-group {
	padding-top: var(--gap-section-py);
	padding-bottom: var(--gap-section-py);
}
.home .entry-content > .gap-hero { padding-top: 0; padding-bottom: 0; }

/* Trust section gets its own comfortable internal padding */
.home .entry-content > .gap-trust {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
	margin-bottom: 0 !important;
}
/* Hard visual break between trust and the CTA below it */
.home .entry-content > .gap-trust + .wp-block-group {
	padding-top: var(--gap-section-py) !important;
}

/* =========================================================
   Top contact bar (rendered from inc/header-topbar.php)
   ========================================================= */
.gap-topbar {
	background: var(--gap-ink);
	color: #fff;
	font-size: 0.85rem;
	padding: 6px 0;
}
.gap-topbar__inner {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.gap-topbar a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.gap-topbar a:hover { color: #ff8a8e; }
.gap-topbar__contact { white-space: nowrap; flex-shrink: 0; }

/* News ticker */
.gap-ticker {
	flex: 1;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gap-ticker__track {
	display: flex;
	white-space: nowrap;
	animation: gap-ticker-scroll 28s linear infinite;
}
.gap-ticker__track span {
	display: inline-block;
	padding: 0 40px;
	opacity: 0.95;
}
@keyframes gap-ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.gap-ticker:hover .gap-ticker__track { animation-play-state: paused; }
@media (max-width: 600px) {
	.gap-topbar__contact { display: none; }
}

/* =========================================================
   Buttons – global
   ========================================================= */
.button,
.wp-block-button__link,
button[type="submit"],
.single_add_to_cart_button {
	border-radius: var(--gap-radius) !important;
	font-weight: 600;
	letter-spacing: 0.01em;
}

/* =========================================================
   WooCommerce product cards – full layout
   ========================================================= */

/* Card shell */
.woocommerce ul.products li.product {
	background: #fff;
	border: 1px solid var(--gap-border);
	border-radius: var(--gap-radius);
	padding: 0;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 12px 32px rgba(20, 23, 28, 0.13);
	border-color: transparent;
	transform: translateY(-5px);
}

/* ── Image area ────────────────────────────────────────────── */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: block;
	flex-shrink: 0;
}
/*
 * Kadence wraps <h2> + rating + price + stock + button in .product-details.
 * Give it flex:1 so it fills remaining card height, enabling margin-top:auto
 * on .product-action-wrap to pin the button to the card bottom.
 */
.woocommerce ul.products li.product .product-details {
	display: flex;
	flex-direction: column;
	flex: 1;
	background: transparent;
}
.woocommerce ul.products li.product a img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: #f3f4f6;   /* neutral grey – same tone as new placeholders */
	padding: 18px;
	box-sizing: border-box;
	border-radius: 0;
	flex-shrink: 0;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
	background: var(--gap-accent);
	color: #fff;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	top: 10px;
	left: 10px;
}

/* ── Title ─────────────────────────────────────────────────── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--gap-ink);
	font-size: 0.93rem;
	font-weight: 600;
	line-height: 1.45;
	min-height: 2.7em;
	padding: 14px 14px 4px;
	margin: 0;
}

/* ── Star rating ───────────────────────────────────────────── */
.woocommerce ul.products li.product .star-rating {
	margin: 2px 14px 4px;
	font-size: 0.78rem;
	color: #f59e0b;
}
.woocommerce ul.products li.product .star-rating::before {
	color: #d1d5db;
}
.woocommerce ul.products li.product .star-rating span::before {
	color: #f59e0b;
}

/* ── Price ─────────────────────────────────────────────────── */
.woocommerce ul.products li.product .price {
	color: var(--gap-primary);
	font-weight: 700;
	font-size: 1.05rem;
	padding: 2px 14px 8px;
	margin: 0;
	display: block;
}
.woocommerce ul.products li.product .price del {
	color: var(--gap-muted);
	font-weight: 400;
	font-size: 0.85em;
	margin-right: 4px;
	opacity: 0.8;
}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
	color: var(--gap-muted);
}
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 700;
}

/* ── Stock badge ───────────────────────────────────────────── */
.gap-stock {
	display: inline-block;
	font-size: 0.73rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 2px 10px;
	margin: 0 14px 10px;
}
.gap-stock--in    { background: #e6f9f2; color: var(--gap-accent-dark); }
.gap-stock--low   { background: #fff4e6; color: #d9480f; }
.gap-stock--out   { background: #fff0f0; color: #c92a2a; }

/* ── Add to cart (Kadence wraps the button in .product-action-wrap) ── */
.woocommerce ul.products li.product .product-action-wrap {
	margin-top: auto;       /* pushes wrap – and the button in it – to card bottom */
	padding: 4px 14px 14px;
}
.woocommerce ul.products li.product .product-action-wrap .button,
.woocommerce ul.products li.product > .button {
	background: var(--gap-accent);
	color: #fff !important;
	display: block;
	width: 100%;
	margin: 0;
	text-align: center;
	border-radius: var(--gap-radius) !important;
	font-weight: 600;
	font-size: 0.88rem;
	padding: 10px 16px;
	box-sizing: border-box;
	transition: background 0.15s ease;
}
.woocommerce ul.products li.product .product-action-wrap .button:hover,
.woocommerce ul.products li.product > .button:hover {
	background: var(--gap-accent-dark);
	color: #fff !important;
}

/* ── Responsive columns ────────────────────────────────────── */
/* 4-up → 2-up at tablet → 1-up at mobile */
@media (max-width: 960px) and (min-width: 601px) {
	.woocommerce ul.products.columns-4 li.product {
		width: calc(50% - 14px) !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}
@media (max-width: 600px) {
	.woocommerce ul.products li.product {
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/* Tighten the gap between "Shop by Category" and "Bestsellers" to match
   the rhythm used between all other sections (60px + 30px = 90px vs 120px) */
.home .entry-content > .gap-bestsellers {
	padding-top: calc(var(--gap-section-py) * 0.5) !important;
}

/* ── Category sections (Best Sellers by Category) ──────────────────────── */
.gap-cat-section {
	margin-bottom: 48px;
}
.gap-cat-section:last-child {
	margin-bottom: 0;
}
.gap-cat-section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gap-ink);
	margin: 0 0 20px !important;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gap-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gap-cat-section-title a {
	color: inherit;
	text-decoration: none;
}
.gap-cat-section-title a:hover {
	color: var(--gap-primary);
}
.gap-cat-section-more {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gap-primary) !important;
	text-decoration: none;
	margin-left: auto;
	flex-shrink: 0;
}
.gap-cat-section-more:hover {
	text-decoration: underline;
}

/* =========================================================
   Homepage helpers (used by the block layout)
   ========================================================= */
.gap-section-title {
	color: var(--gap-ink);
	font-weight: 700;
}
.gap-trust {
	background: var(--gap-tint);
	border-radius: 16px;
	overflow: hidden;            /* clips column content to rounded corners  */
	padding: 34px 18px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	position: relative;          /* establishes a stacking context            */
	z-index: 0;
}
.gap-trust .wp-block-column {
	text-align: center;
	padding: 18px 12px;
}
.gap-trust .wp-block-column > p:first-child {
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 4px;
}
.gap-trust h3 {
	font-size: 1rem;
	margin: 8px 0 4px;
	color: var(--gap-primary);
}
.gap-trust p { font-size: 0.85rem; color: var(--gap-muted); margin: 0; }

/* =========================================================
   Hero banner – full-bleed lifestyle photo, text on left
   ========================================================= */

/* Remove Kadence default top padding so hero sits flush under the header */
.home .entry-content-wrap,
.home .entry-content.single-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}
.home .site-main {
	padding-top: 0 !important;
}

.gap-hero.wp-block-cover {
	border-radius: 0;
	min-height: 600px !important;
	padding: 0 !important;
	align-items: stretch;
}

/* Replace uniform dim with a directional gradient: dark left → transparent right */
.gap-hero.wp-block-cover .wp-block-cover__background {
	background: linear-gradient(
		108deg,
		rgba(20, 23, 28, 0.94) 0%,
		rgba(20, 23, 28, 0.82) 38%,
		rgba(20, 23, 28, 0.18) 100%
	) !important;
	opacity: 1 !important;
}

/* Inner container: full width, flex, vertically centred */
.gap-hero .wp-block-cover__inner-container {
	display: flex !important;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 40px 90px;
	box-sizing: border-box;
}

/* Content column – sits on the left */
.gap-hero__content {
	max-width: 580px;
	text-align: left;
}

.gap-hero h1 {
	color: #fff;
	font-size: clamp(2.1rem, 4.2vw, 3.3rem);
	font-weight: 800;
	line-height: 1.12;
	margin: 0 0 18px;
}
.gap-hero h1 em {
	font-style: normal;
	color: #ff4040; /* bright read on dark bg – same hue as #D31F20, lightened for contrast */
}

/* Eyebrow pill above headline */
.gap-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(211, 31, 32, 0.18);
	border: 1px solid rgba(211, 31, 32, 0.45);
	color: #ff8888 !important; /* lightened for readability on dark bg */
	font-size: 0.82rem !important;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 7px 16px;
	margin: 0 0 22px !important;
	max-width: none !important;
}

.gap-hero p {
	color: #c6ccd4;
	font-size: 1.12rem;
	max-width: 520px;
	margin: 0 0 30px;
	line-height: 1.65;
}

.gap-hero .wp-block-buttons { justify-content: flex-start; }

/* Stats row */
.gap-hero__stats {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 36px;
	padding: 26px 0 0;
	margin: 26px 0 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: #aab2bc;
	font-size: 0.92rem;
}
.gap-hero__stats li { margin: 0; }
.gap-hero__stats strong {
	display: block;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
}

@media (max-width: 781px) {
	.gap-hero.wp-block-cover { border-radius: 0; min-height: 520px !important; }
	.gap-hero.wp-block-cover .wp-block-cover__background {
		background: rgba(20, 23, 28, 0.80) !important;
	}
	.gap-hero .wp-block-cover__inner-container { padding: 72px 24px 64px; }
	.gap-hero__content { max-width: 100%; text-align: center; }
	.gap-hero p { margin: 0 auto 28px; }
	.gap-hero .wp-block-buttons { justify-content: center; }
	.gap-hero__stats { justify-content: center; text-align: center; }
}

.gap-btn-accent .wp-block-button__link {
	background: var(--gap-accent);
	color: #fff;
	padding: 14px 34px;
	box-shadow: 0 8px 24px rgba(215, 38, 44, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gap-btn-accent .wp-block-button__link:hover {
	background: var(--gap-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(215, 38, 44, 0.45);
}
.gap-btn-ghost .wp-block-button__link {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
	padding: 12px 32px;
}
.gap-btn-ghost .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* CTA banner near the footer */
.gap-cta {
	background: var(--gap-primary);
	color: #fff;
	border-radius: var(--gap-radius);
	padding: 56px 32px;
	text-align: center;
}
.gap-cta h2 { color: #fff; margin-top: 0; }
.gap-cta p { color: #ffd9da; }
.gap-cta .gap-btn-accent .wp-block-button__link {
	background: #fff;
	color: var(--gap-primary);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.gap-cta .gap-btn-accent .wp-block-button__link:hover {
	background: var(--gap-ink);
	color: #fff;
}

/* Header logo sizing */
.site-branding img.custom-logo {
	max-height: 64px;
	width: auto;
}

/* Category cards on homepage */
.gap-cat-card {
	border-radius: var(--gap-radius);
	overflow: hidden;
	box-shadow: var(--gap-shadow);
	transition: transform 0.2s ease;
}
.gap-cat-card:hover { transform: translateY(-4px); }
.gap-cat-card {
	background: var(--gap-tint);
	padding: 28px 22px;
	text-align: center;
	height: 100%;
}
.gap-cat-card h3 {
	color: var(--gap-primary);
	font-size: 1.1rem;
	margin: 6px 0 8px;
}
.gap-cat-card p {
	color: var(--gap-muted);
	font-size: 0.88rem;
	margin: 0 0 14px;
}
.gap-cat-card .gap-cat-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(20, 23, 28, 0.12);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px 36px;
	font-size: 0;
}

/* ── Category SVG icons (CSS data-URI, Feather-style 1.75px stroke) ── */
.gap-cat-icon--chemicals {
	/* Spray bottle: body + pump tube + cap + nozzle arm + spray lines */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='9' width='8' height='12' rx='1'/%3E%3Cline x1='12' y1='9' x2='12' y2='5'/%3E%3Crect x='9' y='3' width='6' height='2' rx='1'/%3E%3Cpath d='M15 4h3v4'/%3E%3Cline x1='18' y1='6' x2='21' y2='4'/%3E%3Cline x1='18' y1='6' x2='21' y2='8'/%3E%3C/svg%3E");
}
.gap-cat-icon--equipment {
	/* Mop bucket: rim line + arched handle + tapered body */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='8' x2='20' y2='8'/%3E%3Cpath d='M8 8c0-4 8-4 8 0'/%3E%3Cpath d='M5 8l2 13h10l2-13'/%3E%3C/svg%3E");
}
.gap-cat-icon--janitorial {
	/* Paper roll: outer ring + centre hole + unwinding sheet tail */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='7'/%3E%3Ccircle cx='12' cy='13' r='3'/%3E%3Cpath d='M12 6V2'/%3E%3Cpath d='M12 2c0-1 5-1 5 3'/%3E%3C/svg%3E");
}
.gap-cat-icon--safety {
	/* Hard hat: dome arc + wide brim + headband rect */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15a8 8 0 0 0 16 0'/%3E%3Cline x1='2' y1='15' x2='22' y2='15'/%3E%3Crect x='6' y='15' width='12' height='4' rx='1'/%3E%3C/svg%3E");
}

/* ── Trust row SVG icons ─────────────────────────────────────────────── */
.gap-trust-icon {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto 14px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(20, 23, 28, 0.10);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
}
.gap-trust-icon--truck {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpath d='M16 8h4l3 5v4h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}
.gap-trust-icon--tag {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z'/%3E%3Ccircle cx='7' cy='7' r='1.5' fill='%23D31F20'/%3E%3C/svg%3E");
}
.gap-trust-icon--invoice {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cline x1='10' y1='9' x2='8' y2='9'/%3E%3C/svg%3E");
}
.gap-trust-icon--phone {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D31F20' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 014.69 12a19.79 19.79 0 01-3.07-8.67A2 2 0 013.6 1.18h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L7.91 8.73a16 16 0 006.29 6.29l1.06-1.06a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}
.gap-cat-card a.gap-cat-link {
	color: var(--gap-accent-dark);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
}
.gap-cat-card a.gap-cat-link:hover { text-decoration: underline; }

/* =========================================================
   Single product
   ========================================================= */
.single_add_to_cart_button {
	background: var(--gap-accent) !important;
}
.single_add_to_cart_button:hover {
	background: var(--gap-accent-dark) !important;
}

/* =========================================================
   Checkout – keep it calm and focused
   ========================================================= */
.woocommerce-checkout #payment {
	background: var(--gap-surface);
	border-radius: var(--gap-radius);
}

/* =========================================================
   Testimonials section wrapper
   ========================================================= */
.gap-testimonials {
	background: var(--gap-tint);
	border-radius: 20px;
	padding: 56px 40px !important;
}

/* =========================================================
   Testimonials
   ========================================================= */
.gap-testimonial {
	background: #fff;
	border: 1px solid var(--gap-border);
	border-radius: var(--gap-radius);
	padding: 28px 24px 24px !important;
	position: relative;
	box-shadow: var(--gap-shadow);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.gap-testimonial::before {
	content: '\201C';
	position: absolute;
	top: 14px;
	right: 22px;
	font-size: 4rem;
	line-height: 1;
	color: var(--gap-primary-light);
	font-family: Georgia, serif;
	pointer-events: none;
}
.gap-testimonial__stars {
	color: #f59e0b;
	font-size: 1rem;
	letter-spacing: 2px;
	margin: 0 0 12px !important;
}
.gap-testimonial__text {
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--gap-muted);
	font-style: italic;
	margin: 0 0 20px !important;
	flex: 1;
}
.gap-testimonial__author {
	display: flex !important;
	align-items: center;
	gap: 12px;
	margin: 0 !important;
	font-size: 0.85rem;
}
.gap-testimonial__avatar {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--gap-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.8rem;
	font-family: 'Manrope', sans-serif;
}
.gap-testimonial__meta {
	color: var(--gap-ink);
	line-height: 1.4;
}
.gap-testimonial__meta strong {
	display: block;
	font-size: 0.88rem;
}

/* =========================================================
   Payment + trust badge bar (sits above footer)
   ========================================================= */
.gap-payment-bar {
	background: #fff;
	border-top: 1px solid var(--gap-border);
	border-bottom: 1px solid var(--gap-border);
	padding: 14px 20px;
}
.gap-payment-bar__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 18px;
}
.gap-pay-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--gap-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
.gap-pay-card {
	display: inline-flex;
	align-items: center;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(20,23,28,0.10);
	line-height: 0;
}
.gap-pay-divider {
	display: inline-block;
	width: 1px;
	height: 22px;
	background: var(--gap-border);
	margin: 0 4px;
}
.gap-pay-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--gap-muted);
	white-space: nowrap;
}

/* =========================================================
   Footer
   ========================================================= */
.gap-footer {
	background: var(--gap-ink);
	color: rgba(255,255,255,0.75);
	font-size: 0.875rem;
	line-height: 1.6;
}
.gap-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 20px 40px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px 32px;
}
.gap-footer__col h4 {
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 0 0 16px !important;
}
.gap-footer__col ul {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}
.gap-footer__col ul li {
	margin: 0 0 9px !important;
}
.gap-footer__col a {
	color: rgba(255,255,255,0.68);
	text-decoration: none;
	transition: color 0.18s;
}
.gap-footer__col a:hover { color: #fff; }

/* Brand column */
.gap-footer__logo {
	display: inline-block;
	margin-bottom: 14px;
	text-decoration: none !important;
}
.gap-footer__logo--text {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
/* If logo image is broken/missing, hide the img and rely on alt or hide it */
.gap-footer__logo-img {
	max-height: 52px;
	width: auto;
	display: block;
}
.gap-footer__tagline {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.55;
	margin: 0 0 20px !important;
}
.gap-footer__contact {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.gap-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 9px !important;
	color: rgba(255,255,255,0.68);
}
.gap-footer__contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }
.gap-footer__contact a { color: rgba(255,255,255,0.68); }
.gap-footer__contact a:hover { color: #fff; }

/* Business info column */
.gap-footer__business {
	list-style: none !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
}
.gap-footer__business li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 10px !important;
	font-size: 0.82rem;
	color: rgba(255,255,255,0.58);
}
.gap-footer__business svg { flex-shrink: 0; margin-top: 2px; opacity: 0.55; }
.gap-footer__about-link {
	font-size: 0.82rem;
	color: var(--gap-primary) !important;
	text-decoration: none;
	font-weight: 600;
}
.gap-footer__about-link:hover { color: #ff5555 !important; }

/* Copyright strip */
.gap-footer__bottom-wrap {
	background: rgba(0,0,0,0.25);
}
.gap-footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.gap-footer__copy {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.40);
}
.gap-footer__bottom-links {
	display: flex;
	gap: 20px;
}
.gap-footer__bottom-links a {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.40);
	text-decoration: none;
}
.gap-footer__bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* Footer responsive */
@media (max-width: 900px) {
	.gap-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}
	.gap-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.gap-footer__inner {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}
	.gap-footer__bottom { flex-direction: column; align-items: flex-start; }
	.gap-payment-bar__inner { gap: 8px 12px; }
}
