/* =========================================================
   Gymcare Child — Product Detail Page ONLY
   Scope: body.single-product / .woocommerce-summary-wrap
   ========================================================= */

/* --- Row layout: sidebar (left) + gallery + summary --- */
body.single-product .woocommerce-summary-wrap.row {
	display: flex;
	flex-wrap: wrap;
}

body.single-product .woocommerce-product-sidebar {
	padding-right: 16px;
}

/* --- Trust badges box --- */
body.single-product .gymcare-trust-badges {
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

body.single-product .gymcare-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #eee;
}

body.single-product .gymcare-trust-item:last-child {
	border-bottom: none;
}

body.single-product .gymcare-trust-icon {
	flex: 0 0 auto;
	color: #222;
	margin-top: 2px;
}

body.single-product .gymcare-trust-text {
	display: flex;
	flex-direction: column;
	font-size: 13px;
}

body.single-product .gymcare-trust-text strong {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .3px;
	margin-bottom: 2px;
}

body.single-product .gymcare-trust-text span {
	color: #777;
}

/* --- Secure checkout note --- */
body.single-product .gymcare-secure-checkout {
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 20px;
}

body.single-product .gymcare-secure-title {
	font-size: 12px;
	font-weight: 600;
	color: #333;
	margin: 0 0 10px;
}

body.single-product .gymcare-secure-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

body.single-product .gymcare-secure-badges span {
	font-size: 10px;
	line-height: 1;
	padding: 6px 8px;
	border: 1px solid #ddd;
	border-radius: 3px;
	color: #555;
	background: #fff;
}

/* --- Promo banner --- */
body.single-product .gymcare-promo-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	padding: 26px 16px;
	background: linear-gradient(135deg, #ffd93d 0%, #ff6b1a 60%, #e63946 100%);
	color: #fff;
}

body.single-product .gymcare-promo-eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: .9;
}

body.single-product .gymcare-promo-headline {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.1;
	margin: 6px 0 14px;
	text-transform: uppercase;
}

body.single-product .gymcare-promo-cta {
	background: #fff;
	color: #e63946;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 3px;
}

/* --- Contact Form 7 field styling to match the theme --- */
body.single-product .gymcare-quote-form-wrap .wpcf7-form p {
	margin-bottom: 12px;
}

body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="text"],
body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="email"],
body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="tel"],
body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="number"],
body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="file"],
body.single-product .gymcare-quote-form-wrap .wpcf7-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
}

body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="submit"] {
	background: #d4a017;
	color: #fff;
	border: none;
	padding: 0px 30px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

body.single-product .gymcare-quote-form-wrap .wpcf7-form input[type="submit"]:hover {
	background: #b8890f;
}

body.single-product .gymcare-quote-form-wrap .wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #555;
}

/* --- Gallery: big main image, thumbnails in a 2-col grid below --- */
body.single-product .woocommerce-gallery {
	max-width: 100%;
}

body.single-product .woocommerce-product-gallery__wrapper {
	margin-bottom: 12px;
}

body.single-product .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 10px;
}

body.single-product .flex-control-thumbs li {
	width: 100%;
	list-style: none;
}

body.single-product .flex-control-thumbs li img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity .2s ease;
}

body.single-product .flex-control-thumbs li img.flex-active,
body.single-product .flex-control-thumbs li img:hover {
	opacity: 1;
}

/* --- Right column summary spacing --- */
body.single-product .woocommerce-summary-inner {
	padding-left: 24px;
}

body.single-product .woocommerce-sg-product-title {
	font-size: 26px;
	margin-bottom: 6px;
}

/* --- Social share row --- */
body.single-product .woocommerce-social-share {
	margin: 10px 0 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* --- Quote / order form --- */
body.single-product .gymcare-quote-form-wrap {
	margin-top: 18px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 6px;
	background: #fafafa;
}

body.single-product .gymcare-quote-title {
	color: #c0392b;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 16px;
	font-weight: 600;
}

/* --- Full-width description panel below the gallery/summary row --- */
body.single-product .woocommerce-tabs-custom-wrapper,
body.single-product .woocommerce-Tabs-panel--description {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 6px;
}

/* --- Related products row --- */
body.single-product .related.products {
	margin-top: 40px;
}
