/* T&T Graphics - shop redesign (category, shop, search, single product)
   Extends the GotPrint-style design system from ttg-home. */

.ttg-shop,
.ttg-card {
	--ttg-blue: #0370af;
	--ttg-blue-dark: #024f7c;
	--ttg-blue-darker: #013c5f;
	--ttg-orange: #e26835;
	--ttg-orange-dark: #c2501f;
	--ttg-ink: #1a2733;
	--ttg-muted: #5b6b7a;
	--ttg-line: #e6ecf2;
	--ttg-bg-alt: #f4f7fa;
	--ttg-radius: 12px;
	--ttg-shadow: 0 2px 10px rgba(3, 40, 66, .08);
	--ttg-shadow-hover: 0 14px 34px rgba(3, 40, 66, .18);
}

.ttg-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* The theme wraps content in a boxed container; our pages manage their
   own vertical rhythm. */
main.ttg-shop#content {
	padding-top: 0;
	padding-bottom: 64px;
}

/* Shared animated blobs (same recipe as the homepage hero) */
.ttg-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ttg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .35;
	animation: ttg-float 12s ease-in-out infinite;
}
.ttg-blob-1 { width: 380px; height: 380px; background: #0a8fd8; top: -140px; right: -60px; }
.ttg-blob-2 { width: 300px; height: 300px; background: var(--ttg-orange); bottom: -160px; left: -80px; animation-delay: -6s; opacity: .22; }
@keyframes ttg-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -25px) scale(1.08); }
}

/* Scroll reveal (JS-gated so no-JS visitors always see content) */
.ttg-reveal.ttg-anim {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1);
}
.ttg-reveal.ttg-in { opacity: 1; transform: none; }

/* Buttons */
.ttg-btn {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 40px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
	position: relative;
	overflow: hidden;
}
.ttg-btn-primary {
	background: linear-gradient(100deg, var(--ttg-orange), #f0824f);
	color: #fff;
	box-shadow: 0 8px 22px rgba(226, 104, 53, .35);
}
.ttg-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(226, 104, 53, .45); }

/* ==================================================================
   Product card (all loops: archive grid, related, upsells, cross-sells)
   ================================================================== */
.ttg-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--ttg-line);
	border-radius: var(--ttg-radius);
	overflow: hidden;
	text-align: left;
	box-shadow: var(--ttg-shadow);
	transition: transform .35s ease, box-shadow .35s ease;
}
.ttg-card:hover { transform: translateY(-8px); box-shadow: var(--ttg-shadow-hover); }

.ttg-card-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fafbfc;
}
.ttg-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin: 0;
	transition: transform .5s cubic-bezier(.2, .6, .2, 1);
}
.ttg-card:hover .ttg-card-img img { transform: scale(1.07); }

.ttg-card-badge,
.ttg-card-tag {
	position: absolute;
	top: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
	line-height: 1;
}
.ttg-card-badge { left: 12px; background: var(--ttg-orange); color: #fff; box-shadow: 0 4px 12px rgba(226, 104, 53, .4); }
.ttg-card-tag { right: 12px; background: rgba(3, 112, 175, .12); color: var(--ttg-blue-dark); }

.ttg-card-name {
	margin: 0;
	padding: 16px 18px 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
}
.ttg-card-name a { color: var(--ttg-ink); text-decoration: none; transition: color .2s ease; }
.ttg-card-name a:hover { color: var(--ttg-blue); }

.ttg-card-price { padding: 0 18px; font-size: 13px; color: var(--ttg-muted); min-height: 20px; }
.ttg-starting-at .ttg-price-label { margin-right: 4px; }
.ttg-starting-at .ttg-price,
.ttg-starting-at .ttg-price .woocommerce-Price-amount {
	color: var(--ttg-blue);
	font-weight: 700;
	font-size: 15px;
}

.ttg-card-action { padding: 12px 18px 18px; margin-top: auto; }
.ttg-card-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px 18px;
	border: 1.5px solid var(--ttg-blue);
	border-radius: 30px;
	background: #fff;
	color: var(--ttg-blue);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.ttg-card-cta:hover {
	background: var(--ttg-blue);
	color: #fff;
	box-shadow: 0 8px 20px rgba(3, 112, 175, .35);
}
.ttg-card-cta-arrow { transition: transform .25s ease; }
.ttg-card-cta:hover .ttg-card-cta-arrow { transform: translateX(4px); }

/* Neutralise theme column/float classes on our grid items */
.ttg-shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ttg-shop-grid::before,
.ttg-shop-grid::after { display: none; } /* kill theme clearfix rows */
.ttg-shop-grid > li {
	float: none !important;
	width: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

/* Staggered reveal for grid items (JS adds .ttg-anim then .ttg-in) */
.ttg-shop-grid.ttg-anim > li {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .55s cubic-bezier(.2, .6, .2, 1), transform .55s cubic-bezier(.2, .6, .2, 1);
}
.ttg-shop-grid.ttg-in > li { opacity: 1; transform: none; }
.ttg-shop-grid.ttg-in > li:nth-child(4n+2) { transition-delay: .07s; }
.ttg-shop-grid.ttg-in > li:nth-child(4n+3) { transition-delay: .14s; }
.ttg-shop-grid.ttg-in > li:nth-child(4n+4) { transition-delay: .21s; }

/* ==================================================================
   Archive hero
   ================================================================== */
.ttg-shop-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, var(--ttg-blue-darker), var(--ttg-blue) 60%, #0a8fd8);
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}
.ttg-shop-hero-inner {
	position: relative;
	padding-top: 48px;
	padding-bottom: 56px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ttg-shop-title {
	margin: 6px 0 0;
	color: #fff;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: none;
	letter-spacing: 0;
}
.ttg-shop-desc {
	margin-top: 12px;
	max-width: 640px;
	font-size: 16.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
}
.ttg-shop-desc p { margin: 0 0 8px; color: inherit; }
.ttg-shop-count {
	display: inline-block;
	align-self: flex-start;
	margin-top: 16px;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 20px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .9);
}

/* Breadcrumbs (theme outputs #kadbreadcrumbs via woocommerce_breadcrumb) */
.ttg-shop .ttg-breadcrumb #kadbreadcrumbs .kt-breadcrumb-container {
	width: auto;
	max-width: none;
	padding: 0;
	font-size: 13.5px;
}
.ttg-shop-hero .ttg-breadcrumb,
.ttg-shop-hero .ttg-breadcrumb a,
.ttg-shop-hero .ttg-breadcrumb .kad-breadcurrent {
	color: rgba(255, 255, 255, .85);
}
.ttg-shop-hero .ttg-breadcrumb a:hover { color: #fff; }
.ttg-shop-hero .ttg-breadcrumb .bc-delimiter { color: rgba(255, 255, 255, .5); margin: 0 4px; }
.ttg-single .ttg-breadcrumb { padding: 26px 0 0; }
.ttg-single .ttg-breadcrumb,
.ttg-single .ttg-breadcrumb .kad-breadcurrent { color: var(--ttg-muted); }
.ttg-single .ttg-breadcrumb a { color: var(--ttg-blue); }
.ttg-single .ttg-breadcrumb a:hover { color: var(--ttg-blue-dark); }
.ttg-single .ttg-breadcrumb .bc-delimiter { margin: 0 4px; opacity: .5; }

/* ==================================================================
   Category pill nav
   ================================================================== */
.ttg-cat-pills {
	background: #fff;
	border-bottom: 1px solid var(--ttg-line);
	box-shadow: 0 2px 10px rgba(3, 40, 66, .05);
}
.ttg-cat-pills-row {
	display: flex;
	gap: 10px;
	padding-top: 14px;
	padding-bottom: 14px;
	overflow-x: auto;
	scrollbar-width: none;
}
.ttg-cat-pills-row::-webkit-scrollbar { display: none; }
.ttg-cat-pill {
	flex: 0 0 auto;
	padding: 9px 20px;
	border: 1.5px solid var(--ttg-line);
	border-radius: 30px;
	background: #fff;
	color: var(--ttg-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.ttg-cat-pill:hover { border-color: var(--ttg-blue); color: var(--ttg-blue); transform: translateY(-1px); }
.ttg-cat-pill.is-active {
	background: var(--ttg-blue);
	border-color: var(--ttg-blue);
	color: #fff;
	box-shadow: 0 6px 16px rgba(3, 112, 175, .3);
}

/* ==================================================================
   Toolbar, pagination, empty state
   ================================================================== */
.ttg-shop-body { padding-top: 34px; }
.ttg-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.ttg-shop-toolbar .woocommerce-result-count {
	margin: 0;
	font-size: 14px;
	color: var(--ttg-muted);
}
.ttg-shop-toolbar .woocommerce-ordering { margin: 0; }
.ttg-shop-toolbar .woocommerce-ordering select,
.ttg-shop-toolbar .select2-container--default .select2-selection--single {
	border: 1.5px solid var(--ttg-line);
	border-radius: 30px;
	background: #fff;
	padding: 9px 38px 9px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ttg-ink);
	height: auto;
}
.ttg-shop-toolbar .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding: 0;
	color: var(--ttg-ink);
}
.ttg-shop-toolbar .select2-container--default .select2-selection--single .select2-selection__arrow { right: 10px; height: 100%; }

.ttg-shop-pagination { margin-top: 40px; }
.ttg-shop .woocommerce-pagination { text-align: center; }
.ttg-shop .woocommerce-pagination ul {
	display: inline-flex;
	gap: 8px;
	border: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ttg-shop .woocommerce-pagination ul li {
	float: none;
	border: 0;
	margin: 0;
	padding: 0;
}
.ttg-shop .woocommerce-pagination ul li a,
.ttg-shop .woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1.5px solid var(--ttg-line);
	border-radius: 12px;
	background: #fff;
	color: var(--ttg-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.ttg-shop .woocommerce-pagination ul li a:hover {
	border-color: var(--ttg-blue);
	color: var(--ttg-blue);
	transform: translateY(-2px);
	background: #fff;
}
.ttg-shop .woocommerce-pagination ul li span.current,
.ttg-shop .woocommerce-pagination ul li a.current {
	background: var(--ttg-blue);
	border-color: var(--ttg-blue);
	color: #fff;
	box-shadow: 0 6px 16px rgba(3, 112, 175, .3);
}

.ttg-shop-empty {
	text-align: center;
	padding: 80px 20px;
	background: var(--ttg-bg-alt);
	border-radius: 16px;
}
.ttg-shop-empty h2 { margin: 0 0 8px; color: var(--ttg-ink); }
.ttg-shop-empty p { margin: 0 0 24px; color: var(--ttg-muted); }

/* ==================================================================
   Single product
   ================================================================== */
.ttg-pgrid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: start;
	margin-top: 26px;
}

/* Gallery framed card */
.ttg-pgallery {
	background: #fff;
	border: 1px solid var(--ttg-line);
	border-radius: 16px;
	padding: 26px;
	box-shadow: var(--ttg-shadow);
}
.ttg-pgallery .woocommerce-product-gallery { margin: 0; opacity: 1 !important; }
.ttg-pgallery .woocommerce-product-gallery img { border-radius: 10px; }
.ttg-pgallery .onsale,
.ttg-single .onsale {
	display: inline-block;
	background: var(--ttg-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 24px;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(226, 104, 53, .4);
}

/* Summary column (sticky on desktop) */
.ttg-psummary-col { position: sticky; top: 92px; }
.ttg-psummary.summary.entry-summary {
	float: none;
	width: 100%;
	background: #fff;
	border: 1px solid var(--ttg-line);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--ttg-shadow);
}

/* Category eyebrow above the title (theme prints .product_title_cat) */
.ttg-psummary .product_title_cat {
	color: var(--ttg-orange);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.ttg-psummary h1.product_title,
.ttg-psummary .product_title.entry-title {
	margin: 0 0 14px;
	color: var(--ttg-ink);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: none;
	letter-spacing: 0;
}

/* Price */
.ttg-psummary p.price,
.ttg-psummary span.price {
	font-size: 26px;
	font-weight: 700;
	color: var(--ttg-blue);
	margin-bottom: 18px;
}
.ttg-psummary p.price del { color: var(--ttg-muted); font-weight: 400; font-size: 19px; }
.ttg-psummary p.price ins { text-decoration: none; }

/* Short description */
.ttg-psummary .woocommerce-product-details__short-description {
	color: var(--ttg-muted);
	font-size: 15.5px;
	line-height: 1.65;
	margin-bottom: 20px;
}

/* Quantity + stock */
.ttg-psummary form.cart { margin: 0 0 8px; }
.ttg-psummary .quantity { margin-bottom: 14px; }
.ttg-psummary .quantity .qty,
.ttg-psummary input[type="number"],
.ttg-psummary input[type="text"],
.ttg-psummary input[type="email"],
.ttg-psummary textarea {
	border: 1.5px solid var(--ttg-line);
	border-radius: 10px;
	background: #f7f9fb;
	padding: 11px 14px;
	font-size: 15px;
	color: var(--ttg-ink);
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ttg-psummary .quantity .qty:focus,
.ttg-psummary input:focus,
.ttg-psummary textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--ttg-blue);
	box-shadow: 0 0 0 3px rgba(3, 112, 175, .14);
}
.ttg-psummary .stock { color: var(--ttg-blue-dark); font-weight: 600; }

/* The big CTA: Add to cart / Design online / Upload artwork */
.ttg-psummary .single_add_to_cart_button,
.ttg-psummary .product-add-button .button,
.ttg-psummary form.cart .button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 8px 0 0;
	padding: 16px 28px;
	border: 0;
	border-radius: 40px;
	background: linear-gradient(100deg, var(--ttg-orange), #f0824f) !important;
	color: #fff !important;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .3px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(226, 104, 53, .35);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ttg-psummary .single_add_to_cart_button::after,
.ttg-psummary .product-add-button .button::after,
.ttg-psummary form.cart .button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 50%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
	transform: skewX(-20deg);
	transition: left .5s ease;
}
.ttg-psummary .single_add_to_cart_button:hover,
.ttg-psummary .product-add-button .button:hover,
.ttg-psummary form.cart .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(226, 104, 53, .45);
}
.ttg-psummary .single_add_to_cart_button:hover::after,
.ttg-psummary .product-add-button .button:hover::after,
.ttg-psummary form.cart .button:hover::after { left: 130%; }
/* "Design online" alternative action reads as a secondary brand action */
.ttg-psummary form.cart .button.design-online-btn,
.ttg-psummary .product-add-button .button.design-online-btn,
.ttg-psummary .design-online-btn {
	background: linear-gradient(100deg, var(--ttg-blue), #0a8fd8) !important;
	box-shadow: 0 8px 22px rgba(3, 112, 175, .35);
}

/* The Stripe express button belongs to cart/checkout, not the
   configurator flow - and the green pill clashes with the brand. */
.ttg-psummary #wc-stripe-express-checkout-element,
.ttg-psummary .wc-stripe-express-checkout-element { display: none !important; }

/* Meta */
.ttg-psummary .product_meta {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--ttg-line);
	font-size: 13.5px;
	color: var(--ttg-muted);
}
.ttg-psummary .product_meta a { color: var(--ttg-blue); }
.ttg-psummary .product_meta a:hover { color: var(--ttg-blue-dark); }

/* Trust strip */
.ttg-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}
.ttg-trust-strip-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--ttg-bg-alt);
	border-radius: 12px;
	padding: 14px 16px;
}
.ttg-trust-strip-item svg {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	color: var(--ttg-blue);
	margin-top: 2px;
	transition: transform .3s ease, color .3s ease;
}
.ttg-trust-strip-item:hover svg { transform: translateY(-3px); color: var(--ttg-orange); }
.ttg-trust-strip-item strong { display: block; font-size: 13.5px; color: var(--ttg-ink); margin-bottom: 2px; }
.ttg-trust-strip-item span { font-size: 12.5px; line-height: 1.5; color: var(--ttg-muted); }

/* Tabs */
.ttg-shop.ttg-single .woocommerce-tabs { margin-top: 56px; }
.ttg-shop.ttg-single .woocommerce-tabs ul.wc-tabs,
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 -1px;
	padding: 0;
	list-style: none;
	border: 0;
}
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs::before { display: none; }
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs > li {
	float: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs > li > a {
	display: inline-block;
	padding: 12px 24px;
	border: 1.5px solid var(--ttg-line);
	border-radius: 30px;
	background: #fff;
	color: var(--ttg-muted);
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs > li > a:hover { border-color: var(--ttg-blue); color: var(--ttg-blue); background: #fff; }
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs > li.active > a,
.ttg-shop.ttg-single .woocommerce-tabs .wc-tabs > li.active > a:hover {
	background: var(--ttg-blue);
	border-color: var(--ttg-blue);
	color: #fff;
	box-shadow: 0 6px 16px rgba(3, 112, 175, .3);
}
.ttg-shop.ttg-single .woocommerce-tabs .panel,
.ttg-shop.ttg-single .woocommerce-Tabs-panel {
	background: #fff;
	border: 1px solid var(--ttg-line);
	border-radius: 16px;
	padding: 32px;
	margin-top: 18px;
	box-shadow: var(--ttg-shadow);
}
.ttg-shop.ttg-single .woocommerce-Tabs-panel > h2,
.ttg-shop.ttg-single .woocommerce-Tabs-panel > h3:first-child {
	margin-top: 0;
	color: var(--ttg-ink);
}
.ttg-shop.ttg-single .shop_attributes {
	border: 1px solid var(--ttg-line);
	border-radius: 10px;
	overflow: hidden;
}
.ttg-shop.ttg-single .shop_attributes th {
	background: var(--ttg-bg-alt);
	color: var(--ttg-ink);
	font-weight: 700;
	padding: 12px 16px;
}
.ttg-shop.ttg-single .shop_attributes td { padding: 12px 16px; }

/* Related / upsells sections */
.ttg-shop.ttg-single section.related,
.ttg-shop.ttg-single section.upsells {
	margin-top: 64px;
}
.ttg-shop.ttg-single section.related > h3.kt-title,
.ttg-shop.ttg-single section.upsells > h3.kt-title {
	text-align: center;
	font-size: clamp(22px, 2.4vw, 30px);
	color: var(--ttg-ink);
	margin-bottom: 26px;
}
.ttg-shop.ttg-single section.related > h3.kt-title span,
.ttg-shop.ttg-single section.upsells > h3.kt-title span {
	position: relative;
	padding-bottom: 12px;
}
.ttg-shop.ttg-single section.related > h3.kt-title span::after,
.ttg-shop.ttg-single section.upsells > h3.kt-title span::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 72px;
	height: 4px;
	border-radius: 2px;
	background: var(--ttg-orange);
	transform: translateX(-50%);
}
/* Slick carousel cards need a little breathing room */
.ttg-shop.ttg-single .slick-slider .ttg-card-item { padding: 6px; }
.ttg-shop.ttg-single .slick-track { display: flex; }
.ttg-shop.ttg-single .slick-slide { height: auto; }
.ttg-shop.ttg-single .slick-slide > li,
.ttg-shop.ttg-single .slick-slide .ttg-card-item { height: 100%; }

/* ==================================================================
   wp2print configurator skin
   (selectors verified against the live production markup)
   ================================================================== */
.ttg-psummary .print-products-area { margin: 0; }
.ttg-psummary .print-products-area form.add-cart-form { margin: 0; }

.ttg-psummary ul.product-attributes-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}
.ttg-psummary ul.product-attributes-list > li { margin: 0 0 16px; }
.ttg-psummary ul.product-attributes-list > li > label,
.ttg-psummary .print-products-area .attr-box > label {
	display: block;
	margin: 0 0 7px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--ttg-ink);
}
.ttg-psummary ul.product-attributes-list br { display: none; }

.ttg-psummary .print-products-area select,
.ttg-psummary .print-products-area select.quantity {
	width: 100%;
	border: 1.5px solid var(--ttg-line);
	border-radius: 10px;
	background: #f7f9fb;
	padding: 12px 14px;
	font-size: 15px;
	color: var(--ttg-ink);
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ttg-psummary .print-products-area select:focus {
	outline: none;
	background: #fff;
	border-color: var(--ttg-blue);
	box-shadow: 0 0 0 3px rgba(3, 112, 175, .14);
}
.ttg-psummary .print-products-area .select2-container--default .select2-selection--single {
	height: auto;
	border: 1.5px solid var(--ttg-line);
	border-radius: 10px;
	background: #f7f9fb;
	padding: 8px 12px;
}
.ttg-psummary .print-products-area .select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--ttg-blue);
	box-shadow: 0 0 0 3px rgba(3, 112, 175, .14);
}

/* Radio options rendered as pills (label > input + span.button) */
.ttg-psummary .attr-radio-box .a-radio { display: inline-block; margin: 0 8px 8px 0; }
.ttg-psummary .attr-radio-box .a-radio label { margin: 0; cursor: pointer; }
.ttg-psummary .attr-radio-box .a-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}
.ttg-psummary .attr-radio-box .a-radio span.button,
.ttg-psummary .attr-radio-box .a-radio span.button.alt {
	display: inline-block;
	padding: 9px 18px;
	border: 1.5px solid var(--ttg-line);
	border-radius: 30px;
	background: #fff;
	color: var(--ttg-muted);
	font-size: 14px;
	font-weight: 700;
	box-shadow: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ttg-psummary .attr-radio-box .a-radio label:hover span.button {
	border-color: var(--ttg-blue);
	color: var(--ttg-blue);
	background: #fff;
}
.ttg-psummary .attr-radio-box .a-radio input[type="radio"]:checked + span.button,
.ttg-psummary .attr-radio-box .a-radio input[type="radio"]:checked + span.button.alt {
	background: var(--ttg-blue);
	border-color: var(--ttg-blue);
	color: #fff;
	box-shadow: 0 4px 12px rgba(3, 112, 175, .3);
}

/* Live price box */
.ttg-psummary .product-price,
.ttg-psummary div.product-price.price-excl-tax,
.ttg-psummary div.product-price.price-incl-tax {
	margin: 22px 0 4px;
	padding: 18px 22px;
	background: var(--ttg-bg-alt);
	border: 1px solid var(--ttg-line);
	border-left: 4px solid var(--ttg-blue);
	border-radius: 12px;
	font-size: 28px;
	font-weight: 700;
	color: var(--ttg-blue);
	line-height: 1.2;
}
.ttg-psummary .product-price .price-unit {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ttg-muted);
}
.ttg-psummary .product-na-text { color: var(--ttg-muted); font-size: 14px; }

/* Upload artwork drop-zone */
.ttg-psummary .upload-artwork-block,
.ttg-single .upload-artwork-block {
	border: 2px dashed #c9d6e2;
	border-radius: 12px;
	background: #fafcfe;
	padding: 20px;
	margin: 16px 0;
	transition: border-color .25s ease, background .25s ease;
}
.ttg-psummary .upload-artwork-block:hover,
.ttg-single .upload-artwork-block:hover { border-color: var(--ttg-blue); background: #f2f8fd; }
.ttg-psummary .upload-artwork-block input[type="file"] { font-size: 14px; color: var(--ttg-muted); }

.ttg-psummary .product-add-button { margin-top: 18px; }

/* Configurator errors */
.ttg-psummary .area-wh-error,
.ttg-psummary .width-error,
.ttg-psummary .upload-error {
	color: #c0392b;
	font-size: 13.5px;
	font-weight: 600;
	margin: 6px 0;
}

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 1100px) {
	.ttg-shop-grid { grid-template-columns: repeat(3, 1fr); }
	.ttg-pgrid { gap: 32px; }
}
@media (max-width: 900px) {
	.ttg-pgrid { grid-template-columns: 1fr; }
	.ttg-psummary-col { position: static; }
	.ttg-trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.ttg-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.ttg-shop-hero-inner { padding-top: 36px; padding-bottom: 44px; }
	.ttg-psummary.summary.entry-summary { padding: 22px; }
	.ttg-single .woocommerce-tabs .panel,
	.ttg-single .woocommerce-Tabs-panel { padding: 22px; }
	.ttg-pgallery { padding: 16px; }
}
@media (max-width: 480px) {
	.ttg-shop-grid { grid-template-columns: 1fr; }
	.ttg-shop-toolbar { flex-direction: column; align-items: stretch; }
}

/* ==================================================================
   Reduced motion
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
	.ttg-blob { animation: none; }
	.ttg-reveal.ttg-anim,
	.ttg-shop-grid.ttg-anim > li { opacity: 1; transform: none; transition: none; }
	.ttg-card,
	.ttg-card-img img,
	.ttg-card-cta,
	.ttg-cat-pill { transition: none; }
}
