/**
 * Transport Single Product — Frontend styles.
 *
 * @package Transporter_Core
 * @version 1.0.3
 */

/* -- Base -- */
.kw-product {
	--accent: #D42B2B;
	--accent-light: #FF4747;
	--accent-soft: rgba(212,43,43,0.07);
	--bg: #fff;
	--surface: #F4F3F1;
	--surface-hover: #ECEAE7;
	--border: #E8E5DE;
	--text-primary: #111;
	--text-secondary: #6B6560;
	--text-dim: #A09A94;
	--dark-card: #111;
	--dark-border: #222;
	font-family: 'FiraGo', sans-serif;
	color: var(--text-primary);
	line-height: 1.5;
	max-width: 1360px;
	margin: 0 auto;
	padding: 24px 32px;
	box-sizing: border-box;
	overflow: hidden;
}
.kw-product *,
.kw-product *::before,
.kw-product *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.kw-product img {
	max-width: 100% !important;
	height: auto !important;
}

/* -- Top nav & breadcrumb -- */
.kw-product .top-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--text-dim);
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}
.kw-product .breadcrumb {
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
}
.kw-product .breadcrumb .sep {
	color: var(--border);
}
.kw-product .breadcrumb span.active {
	color: var(--accent);
	font-weight: 600;
}

/* -- Title -- */
.kw-product .title-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
}
.kw-product h1 {
	font-family: 'Bebas', sans-serif;
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 400;
	line-height: .95;
	color: var(--text-primary);
	margin: 0;
	padding: 0;
}
.kw-product h1 .highlight {
	color: var(--accent);
}

/* -- Product Grid -- */
.kw-product .product-grid {
	display: grid !important;
	grid-template-columns: 1fr 2fr 1fr !important;
	gap: 36px;
	align-items: start;
}

/* -- Left column -- */
.kw-product .left-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	z-index: 2;
}
.kw-product .description {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.75;
	font-weight: 400;
}
.kw-product .info-box {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: var(--surface);
	border: 1px solid var(--border);
	font-size: 12px;
	font-weight: 500;
	color: var(--text-secondary);
	transition: all .3s;
}
.kw-product .info-box:hover {
	border-color: var(--surface-hover);
	background: var(--surface-hover);
}
.kw-product .info-icon {
	background: var(--accent);
	color: #fff;
	width: 20px;
	height: 20px;
	min-width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

/* -- Spec boxes -- */
.kw-product .specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}
.kw-product .spec-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 20px 18px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.kw-product .spec-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
}
.kw-product .spec-item:hover::after {
	transform: scaleX(1);
}
.kw-product .spec-item:hover {
	border-color: var(--surface-hover);
}
.kw-product .spec-item h3 {
	font-family: 'Bebas', sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: -2px;
	color: var(--text-primary);
	line-height: 1.1;
	display: block !important;
	width: 100%;
}
.kw-product .spec-item p {
	font-size: 11px;
	color: var(--text-dim);
	font-weight: 500;
	margin: 0;
	display: block !important;
	width: 100%;
}

/* -- Center column -- */
.kw-product .center-col {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: visible;
	min-width: 0;
	z-index: 1;
	margin-left: -75px;
	margin-right: -75px;
}
.kw-product .product-image {
	width: 100% !important;
	max-width: 720px !important;
	height: auto !important;
	object-fit: contain !important;
	animation: kwFloatBike 4s ease-in-out infinite;
	position: relative;
	z-index: 1;
}
@keyframes kwFloatBike {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
.kw-product .speed-lines {
	position: absolute;
	left: -30px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: .18;
}
.kw-product .speed-lines span {
	display: block;
	height: 1.5px;
	background: linear-gradient(90deg, transparent, var(--accent));
}
.kw-product .speed-lines span:nth-child(1) { width: 55px; }
.kw-product .speed-lines span:nth-child(2) { width: 85px; }
.kw-product .speed-lines span:nth-child(3) { width: 40px; }
.kw-product .speed-lines span:nth-child(4) { width: 70px; }
.kw-product .speed-lines span:nth-child(5) { width: 48px; }

/* -- Right column / Price card -- */
.kw-product .right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}
.kw-product .price-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.kw-product .price-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
}

/* Currency switcher */
.kw-product .currency-switcher {
	display: flex;
	background: #1a1a1a;
	padding: 3px;
	margin-bottom: 26px;
	border: 1px solid #333;
}
.kw-product .currency-btn {
	flex: 1;
	padding: 8px 0;
	border: none;
	background: transparent;
	color: #888;
	font-family: 'FiraGo', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all .25s ease;
	letter-spacing: .5px;
	min-height: 36px;
	-webkit-tap-highlight-color: transparent;
}
.kw-product .currency-btn.active {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 2px 14px rgba(212,43,43,.3);
}
.kw-product .currency-btn:not(.active):hover {
	color: #aaa;
}

/* Price */
.kw-product .price-label {
	font-size: 11px;
	color: #888;
	margin-bottom: 6px;
	letter-spacing: 2px;
	font-weight: 500;
}
.kw-product .prices {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 24px;
}
.kw-product .old-price {
	font-size: 1.1rem;
	color: #777;
	text-decoration: line-through;
	font-weight: 600;
}
.kw-product .new-price {
	font-family: 'Bebas', sans-serif;
	font-size: 2.6rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
}
.kw-product .savings-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(212,43,43,.15);
	color: var(--accent-light);
	font-size: 11px;
	font-weight: 600;
	padding: 6px 12px;
	margin-bottom: 28px;
	width: fit-content;
}

/* Buttons */
.kw-product .btn {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 3px;
	font-family: 'FiraGo', sans-serif;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 10px;
	transition: all .25s ease;
	letter-spacing: .5px;
	min-height: 52px;
	-webkit-tap-highlight-color: transparent;
}
.kw-product .btn-red {
	background: var(--accent);
	color: #fff;
}
.kw-product .btn-red:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}
.kw-product .btn-outline {
	background: transparent;
	color: #ccc;
	border: 1px solid #444;
	border-radius: 3px;
}
.kw-product .btn-outline:hover {
	border-color: #666;
	color: #fff;
}
/* -- Wishlist button -- */
.kw-product .trc-wishlist-wrap {
	margin-top: 12px;
	text-align: center;
}
.kw-product .trc-wishlist-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: none;
	border: none;
	color: #777;
	font-family: 'FiraGo', sans-serif;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	padding: 10px 16px;
	transition: all .2s;
	text-decoration: none;
	width: 100%;
}
.kw-product .trc-wishlist-btn:hover {
	color: #bbb;
}
.kw-product .trc-wishlist-heart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	transition: all .2s;
}
.kw-product .trc-wishlist-heart svg {
	width: 18px;
	height: 18px;
	display: block;
}
.kw-product .trc-wishlist-btn:hover .trc-wishlist-heart {
	color: var(--accent-light);
}
/* Active / added state */
.kw-product .trc-wishlist-added .trc-wishlist-btn {
	color: var(--accent-light);
}
.kw-product .trc-wishlist-added .trc-wishlist-heart svg {
	fill: var(--accent-light);
	stroke: var(--accent-light);
}

/* -- Features section -- */
.kw-product .features-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}
.kw-product .features-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.kw-product .features-title,
.kw-product .gallery-title,
.kw-product .specs-section-title {
	font-family: 'Bebas', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--text-primary);
	margin: 0;
	padding: 0;
}
.kw-product .scroll-controls {
	display: flex;
	gap: 6px;
}
.kw-product .scroll-btn {
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 18px;
	transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kw-product .scroll-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.kw-product .features-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
	-webkit-scroll-snap-type: x proximity;
	scroll-snap-type: x proximity;
	cursor: grab;
}
.kw-product .features-track::-webkit-scrollbar {
	display: none;
}
.kw-product .features-track.dragging {
	scroll-behavior: auto;
	scroll-snap-type: none;
	cursor: grabbing;
	user-select: none;
}
.kw-product .feature-card {
	width: 260px;
	max-width: 260px;
	flex-shrink: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition: all .35s ease;
	scroll-snap-align: start;
}
.kw-product .feature-card:hover {
	border-color: var(--accent);
}
.kw-product .feature-card:hover .feature-img-wrap img {
	transform: scale(1.05);
}
.kw-product .feature-card:hover .feature-overlay {
	opacity: 1;
}
.kw-product .feature-card:hover .feature-num {
	color: var(--accent);
}
.kw-product .feature-img-wrap {
	width: 100%;
	height: 170px;
	overflow: hidden;
	position: relative;
}
.kw-product .feature-img-wrap img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: transform .5s ease;
}
.kw-product .feature-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(212,43,43,.08) 100%);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.kw-product .feature-info {
	padding: 16px 18px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.kw-product .feature-num {
	font-family: 'Bebas', sans-serif;
	font-size: 1.1rem;
	color: var(--text-dim);
	flex-shrink: 0;
	transition: color .3s;
	line-height: 1.3;
}
.kw-product .feature-info h3 {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
	margin: 0;
}
.kw-product .scroll-progress {
	margin-top: 20px;
	height: 2px;
	background: var(--border);
	overflow: hidden;
}
.kw-product .scroll-bar {
	height: 100%;
	width: 30%;
	background: var(--accent);
	transition: transform .15s ease;
}

/* -- Gallery section -- */
.kw-product .gallery-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}
.kw-product .gallery-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.kw-product .gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.kw-product .gallery-item {
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	border: 1px solid var(--border);
	transition: border-color .4s ease;
	-webkit-tap-highlight-color: transparent;
}
.kw-product .gallery-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.25,.1,.25,1);
}
.kw-product .gallery-item:hover img {
	transform: scale(1.05);
}
.kw-product .gallery-item:hover {
	border-color: var(--accent);
}
.kw-product .gallery-item.view-more img {
	filter: brightness(.3);
	transition: transform .6s cubic-bezier(.25,.1,.25,1), filter .4s ease;
}
.kw-product .gallery-item.view-more:hover img {
	filter: brightness(.2);
	transform: scale(1.05);
}
.kw-product .view-more-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	z-index: 2;
	pointer-events: none;
}
.kw-product .view-more-icon {
	display: grid;
	grid-template-columns: repeat(3, 8px);
	gap: 4px;
}
.kw-product .view-more-icon span {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,.7);
	border-radius: 1px;
}
.kw-product .gallery-item.view-more:hover .view-more-icon span {
	background: #fff;
}
.kw-product .view-more-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.8);
}
.kw-product .view-more-count {
	font-family: 'Bebas', sans-serif;
	font-size: 1.3rem;
	color: var(--accent);
}

/* -- Lightbox -- */
.kw-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: background .4s ease;
	font-family: 'FiraGo', sans-serif;
}
.kw-lightbox.open {
	background: rgba(0,0,0,.93);
	pointer-events: all;
}
.kw-lightbox img {
	max-width: 88vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 5px;
	opacity: 0;
	transform: scale(.88);
	transition: all .45s cubic-bezier(.25,.1,.25,1);
}
.kw-lightbox.open img {
	opacity: 1;
	transform: scale(1);
}
.kw-lightbox.open img.lb-fade {
	opacity: 0 !important;
	transform: scale(.94) !important;
}
.kw-lightbox .lb-close {
	position: absolute;
	top: 24px;
	right: 28px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.15);
	color: rgba(255,255,255,.6);
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	opacity: 0;
	transform: translateY(-8px);
}
.kw-lightbox.open .lb-close {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .2s;
}
.kw-lightbox .lb-close:hover {
	border-color: #D42B2B;
	color: #D42B2B;
}
.kw-lightbox .lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.1);
	color: rgba(255,255,255,.5);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	opacity: 0;
}
.kw-lightbox.open .lb-nav {
	opacity: 1;
	transition-delay: .15s;
}
.kw-lightbox .lb-nav:hover {
	border-color: #D42B2B;
	color: #fff;
	background: #D42B2B;
}
.kw-lightbox .lb-nav.prev { left: 24px; }
.kw-lightbox .lb-nav.next { right: 24px; }
.kw-lightbox .lb-counter {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Bebas', sans-serif;
	font-size: 1rem;
	color: rgba(255,255,255,.35);
	opacity: 0;
	transition: opacity .4s ease .25s;
}
.kw-lightbox.open .lb-counter {
	opacity: 1;
}
.kw-lightbox .lb-counter .lb-cur {
	color: #D42B2B;
}

/* -- Specifications section -- */
.kw-product .specs-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}
.kw-product .specs-section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 32px;
	gap: 40px;
}
.kw-product .specs-section-sub {
	font-size: 13px;
	color: var(--text-dim);
	margin: 0;
}
.kw-product .specs-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}
.kw-product .specs-accordion {
	display: flex;
	flex-direction: column;
}
.kw-product .spec-group {
	border-bottom: 1px solid var(--border);
}
.kw-product .spec-group:first-child {
	border-top: 1px solid var(--border);
}
.kw-product .spec-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	cursor: pointer;
	user-select: none;
	transition: color .2s;
	min-height: 48px;
	-webkit-tap-highlight-color: transparent;
}
.kw-product .spec-group-header:hover {
	color: var(--accent);
}
.kw-product .spec-group-header h3 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .3px;
	margin: 0;
}
.kw-product .spec-group-toggle {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--surface);
	border: 1px solid var(--border);
	font-size: 18px;
	color: var(--text-dim);
	transition: all .3s;
	flex-shrink: 0;
	line-height: 1;
}
.kw-product .spec-group.open .spec-group-toggle {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}
.kw-product .spec-group-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, padding .3s ease;
}
.kw-product .spec-group.open .spec-group-body {
	max-height: 600px;
	padding-bottom: 20px;
}
.kw-product .spec-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 10px 0;
	gap: 20px;
}
.kw-product .spec-row:not(:last-child) {
	border-bottom: 1px dashed var(--border);
}
.kw-product .spec-row-label {
	font-size: 13px;
	color: var(--text-dim);
	flex-shrink: 0;
}
.kw-product .spec-row-value {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	text-align: right;
}
.kw-product .spec-count {
	font-size: 11px;
	color: var(--text-dim);
	font-weight: 400;
	margin-left: 8px;
}
.kw-product .specs-sidebar {
	position: sticky;
	top: 24px;
	overflow: hidden;
}
.kw-product .specs-sidebar-img {
	width: 100% !important;
	height: 420px !important;
	max-height: 420px !important;
	object-fit: cover;
	border-radius: 5px;
	border: 1px solid var(--border);
}

/* -- Bottom bar -- */
.kw-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #111;
	border-top: 1px solid #222;
	z-index: 99998;
	padding: 0 32px;
	transform: translateY(100%);
	transition: transform .45s cubic-bezier(.25,.1,.25,1);
	font-family: 'FiraGo', sans-serif;
	box-sizing: border-box;
}
.kw-bottom-bar.visible {
	transform: translateY(0);
}
.kw-bottom-bar .bb-inner {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	gap: 20px;
}
.kw-bottom-bar .bb-left {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
	flex: 1;
}
.kw-bottom-bar .bb-img {
	height: 46px !important;
	width: auto !important;
	max-width: 120px !important;
	max-height: 46px !important;
	object-fit: contain;
	flex-shrink: 0;
}
.kw-bottom-bar .bb-title {
	font-family: 'Bebas', sans-serif;
	font-size: 1.15rem;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.kw-bottom-bar .bb-divider {
	width: 1px;
	height: 28px;
	background: #333;
	flex-shrink: 0;
}
.kw-bottom-bar .bb-old-price {
	font-size: .85rem;
	color: #666;
	text-decoration: line-through;
	white-space: nowrap;
}
.kw-bottom-bar .bb-prices {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-shrink: 0;
}
.kw-bottom-bar .bb-price {
	font-family: 'Bebas', sans-serif;
	font-size: 1.4rem;
	color: #fff;
	white-space: nowrap;
}
.kw-bottom-bar .bb-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.kw-bottom-bar .bb-btn {
	padding: 11px 22px;
	border: none;
	border-radius: 3px;
	font-family: 'FiraGo', sans-serif;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: .5px;
	transition: all .25s ease;
	white-space: nowrap;
	min-height: 44px;
	-webkit-tap-highlight-color: transparent;
}
.kw-bottom-bar .bb-btn-red {
	background: #D42B2B;
	color: #fff;
}
.kw-bottom-bar .bb-btn-red:hover {
	background: #FF4747;
}
.kw-bottom-bar .bb-btn-outline {
	background: transparent;
	color: #ccc;
	border: 1px solid #333;
}
.kw-bottom-bar .bb-btn-outline:hover {
	border-color: #666;
	color: #fff;
}

/* -- Contact Form Modal -- */
.trc-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
.trc-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}
.trc-modal {
	position: relative;
	background: #1e1e1e;
	border: 1px solid #333;
	border-radius: 12px;
	width: 90%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 36px 32px;
	transform: translateY(20px) scale(0.96);
	transition: transform .3s ease;
}
.trc-modal-overlay.open .trc-modal {
	transform: translateY(0) scale(1);
}
.trc-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.06);
	border: none;
	border-radius: 50%;
	color: #999;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}
.trc-modal-close:hover {
	background: rgba(255,255,255,0.12);
	color: #fff;
}
.trc-modal-icon {
	text-align: center;
	font-size: 32px;
	margin-bottom: 8px;
}
.trc-modal-title {
	text-align: center;
	color: #fff;
	font-family: 'FiraGo', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 4px;
}
.trc-modal-sub {
	text-align: center;
	color: #888;
	font-family: 'FiraGo', sans-serif;
	font-size: 13px;
	margin: 0 0 24px;
}
.trc-form-group {
	margin-bottom: 16px;
}
.trc-form-group label {
	display: block;
	color: #bbb;
	font-family: 'FiraGo', sans-serif;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.trc-form-group input,
.trc-form-group textarea {
	width: 100%;
	padding: 12px 14px;
	background: #2a2a2a;
	border: 1px solid #444;
	border-radius: 6px;
	color: #e0e0e0;
	font-family: 'FiraGo', sans-serif;
	font-size: 14px;
	transition: border-color .2s;
	box-sizing: border-box;
}
.trc-form-group input:focus,
.trc-form-group textarea:focus {
	outline: none;
	border-color: var(--accent, #C62D3C);
}
.trc-form-group input::placeholder,
.trc-form-group textarea::placeholder {
	color: #666;
}
.trc-form-group textarea {
	resize: vertical;
	min-height: 60px;
}
.trc-form-product {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: rgba(198, 45, 60, 0.08);
	border: 1px solid rgba(198, 45, 60, 0.2);
	border-radius: 6px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.trc-form-product-label {
	color: #888;
	font-family: 'FiraGo', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.trc-form-product-name {
	color: #e0e0e0;
	font-family: 'FiraGo', sans-serif;
	font-size: 13px;
	font-weight: 600;
	flex: 1;
}
.trc-form-product-price {
	color: var(--accent, #C62D3C);
	font-family: 'Bebas', sans-serif;
	font-size: 18px;
	font-weight: 700;
}
.trc-form-submit {
	width: 100%;
	margin-bottom: 0;
}
.trc-form-status {
	text-align: center;
	margin-top: 10px;
	font-family: 'FiraGo', sans-serif;
	font-size: 13px;
	min-height: 20px;
}
.trc-form-error {
	color: #ff6b6b;
}
.trc-success-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 12px;
	background: rgba(46, 204, 113, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2ecc71;
	font-size: 28px;
}

/* -- Animations -- */
.kw-product .fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: kwFadeUp .6s ease forwards;
}
.kw-product .fade-in:nth-child(1) { animation-delay: .1s; }
.kw-product .fade-in:nth-child(2) { animation-delay: .2s; }
.kw-product .fade-in:nth-child(3) { animation-delay: .3s; }
@keyframes kwFadeUp {
	to { opacity: 1; transform: translateY(0); }
}
.kw-product .img-fade {
	opacity: 0;
	animation: kwImgReveal .8s ease forwards .3s;
}
@keyframes kwImgReveal {
	to { opacity: 1; }
}

/* -- Responsive: 1100px -- */
@media (max-width: 1100px) {
	.kw-product .product-grid {
		grid-template-columns: 1fr 1fr !important;
	}
	.kw-product .right-col {
		grid-column: span 2;
		display: flex;
		justify-content: center;
	}
	.kw-product .price-card {
		width: 100%;
		max-width: 520px;
	}
}

/* -- Responsive: 900px -- */
@media (max-width: 900px) {
	.kw-product .specs-layout {
		grid-template-columns: 1fr !important;
	}
	.kw-product .specs-sidebar {
		display: none !important;
	}
	.kw-product .product-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
	.kw-product .right-col {
		grid-column: span 1;
	}
	.kw-product .center-col {
		order: -2;
		margin-left: 0;
		margin-right: 0;
	}
	.kw-product .right-col {
		order: -1;
	}
	.kw-product .left-col {
		order: 0;
	}
	.kw-product .price-card {
		max-width: 100%;
	}
	.kw-product .feature-card {
		width: 230px;
		max-width: 230px;
	}
	.kw-product .feature-img-wrap {
		height: 150px !important;
	}
}

/* -- Responsive: 768px -- */
@media (max-width: 768px) {
	.kw-product {
		padding: 16px !important;
	}
	.kw-product .top-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 14px;
		padding-bottom: 14px;
		font-size: 11px;
	}
	.kw-product .title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 16px;
	}
	.kw-product h1 {
		font-size: 2.4rem !important;
	}
	.kw-product .center-col {
		margin-left: 0;
		margin-right: 0;
	}
	.kw-product .product-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}
	.kw-product .center-col {
		order: -2;
	}
	.kw-product .right-col {
		order: -1;
	}
	.kw-product .left-col {
		order: 0;
	}
	.kw-product .speed-lines {
		display: none !important;
	}
	.kw-product .product-image {
		max-width: 100% !important;
	}
	.kw-product .price-card {
		padding: 24px 20px !important;
		max-width: 100% !important;
		width: 100% !important;
	}
	.kw-product .currency-switcher {
		margin-bottom: 16px;
		padding: 2px;
	}
	.kw-product .currency-btn {
		padding: 8px 0;
		font-size: 12px;
		min-height: 36px;
	}
	.kw-product .new-price {
		font-size: 2.2rem !important;
	}
	.kw-product .old-price {
		font-size: 1rem;
	}
	.kw-product .btn {
		padding: 14px 16px !important;
		font-size: 12px !important;
		min-height: 46px !important;
		margin-bottom: 8px;
	}
	.kw-product .savings-badge {
		font-size: 12px;
		padding: 8px 14px;
	}
	.kw-product .description {
		font-size: 13px;
		line-height: 1.65;
	}
	.kw-product .info-box {
		padding: 14px 16px;
		font-size: 12px;
	}
	.kw-product .specs {
		grid-template-columns: 1fr 1fr !important;
		gap: 8px;
		margin-top: 16px;
	}
	.kw-product .spec-item {
		padding: 16px 14px;
	}
	.kw-product .spec-item h3 {
		font-size: 1.6rem !important;
	}
	.kw-product .spec-item p {
		font-size: 10px !important;
	}
	.kw-product .features-section {
		margin-top: 40px;
		padding-top: 28px;
	}
	.kw-product .features-title {
		font-size: 1.3rem !important;
	}
	.kw-product .scroll-btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.kw-product .feature-card {
		width: 200px;
		max-width: 200px;
	}
	.kw-product .feature-img-wrap {
		height: 130px !important;
	}
	.kw-product .feature-info {
		padding: 12px 14px;
		gap: 10px;
	}
	.kw-product .feature-num {
		font-size: 1rem;
	}
	.kw-product .feature-info h3 {
		font-size: 12px !important;
	}
	.kw-product .gallery-section {
		margin-top: 40px;
		padding-top: 28px;
	}
	.kw-product .gallery-title {
		font-size: 1.3rem !important;
	}
	.kw-product .gallery-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 4px;
	}
	.kw-product .specs-section {
		margin-top: 40px;
		padding-top: 28px;
	}
	.kw-product .specs-section-title {
		font-size: 1.3rem !important;
	}
	.kw-product .spec-group-header {
		padding: 16px 0;
	}
	.kw-product .spec-group-header h3 {
		font-size: 13px !important;
	}
	.kw-product .spec-row {
		flex-direction: column;
		gap: 4px;
		padding: 10px 0;
	}
	.kw-product .spec-row-value {
		text-align: left !important;
	}
	.kw-product .spec-row-label {
		font-size: 12px;
	}
	.kw-product .spec-row-value {
		font-size: 13px;
	}

	/* Bottom bar mobile */
	.kw-bottom-bar {
		padding: 0 16px;
	}
	.kw-bottom-bar .bb-inner {
		height: 58px;
		gap: 10px;
	}
	.kw-bottom-bar .bb-img {
		display: none !important;
	}
	.kw-bottom-bar .bb-title {
		display: none !important;
	}
	.kw-bottom-bar .bb-divider {
		display: none !important;
	}
	.kw-bottom-bar .bb-old-price {
		font-size: .7rem;
	}
	.kw-bottom-bar .bb-price {
		font-size: 1.2rem;
	}
	.kw-bottom-bar .bb-btn {
		padding: 12px 16px;
		font-size: 11px;
	}

	/* Lightbox mobile */
	.kw-lightbox .lb-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.kw-lightbox .lb-nav.prev {
		left: 8px;
	}
	.kw-lightbox .lb-nav.next {
		right: 8px;
	}
	.kw-lightbox .lb-close {
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
	}
	.kw-lightbox img {
		max-width: 96vw;
		max-height: 80vh;
		border-radius: 3px;
	}
	.kw-lightbox .lb-counter {
		bottom: 16px;
		font-size: .85rem;
	}
}

/* -- Modal responsive -- */
@media (max-width: 480px) {
	.trc-modal {
		padding: 28px 20px;
		width: 95%;
		border-radius: 10px;
	}
	.trc-modal-title {
		font-size: 18px;
	}
	.trc-form-group input,
	.trc-form-group textarea {
		padding: 10px 12px;
		font-size: 13px;
	}
}

/* -- Responsive: 420px -- */
@media (max-width: 420px) {
	.kw-product {
		padding: 12px !important;
	}
	.kw-product h1 {
		font-size: 2rem !important;
	}
	.kw-product .new-price {
		font-size: 2.4rem !important;
	}
	.kw-product .price-card {
		padding: 20px 16px !important;
	}
	.kw-product .btn {
		padding: 12px 14px !important;
		font-size: 11px !important;
		min-height: 42px !important;
	}
	.kw-product .specs {
		grid-template-columns: 1fr 1fr !important;
		gap: 6px;
	}
	.kw-product .spec-item {
		padding: 14px 12px;
	}
	.kw-product .spec-item h3 {
		font-size: 1.4rem !important;
	}
	.kw-product .feature-card {
		width: 170px;
		max-width: 170px;
	}
	.kw-product .feature-img-wrap {
		height: 110px !important;
	}
	.kw-product .gallery-grid {
		gap: 3px;
	}
	.kw-bottom-bar .bb-inner {
		height: 54px;
		gap: 6px;
	}
	.kw-bottom-bar .bb-prices {
		gap: 5px;
	}
	.kw-bottom-bar .bb-old-price {
		font-size: .65rem;
	}
	.kw-bottom-bar .bb-price {
		font-size: 1rem;
	}
	.kw-bottom-bar .bb-btn {
		padding: 8px 10px;
		font-size: 9px;
		min-height: 34px;
	}
}
