/* ==========================================================================
   TWC Boat Inventory styles
   Legacy classes kept at the top for backward compatibility.
   New design system starts at ".twc-boat-page".
   ========================================================================== */

/* ---- Legacy styles (kept for backward compat) ----------------------------- */
.heading { color:#cf030c; font-size:18px; font-family:Roboto, Arial, sans-serif; font-weight:500; line-height:1.4; }
.item { display:flex; margin-bottom:5px; }
.text-label { font-weight:bold; margin-right:5px; }
.text-value { color:#555; }
.boat-title { font-size:24px; font-weight:bold; color:#cf030c; font-family:Roboto, Arial, sans-serif; }

/* ==========================================================================
   Design tokens
   ========================================================================== */
.twc-boat-page {
	--twc-red:        #cf030c;
	--twc-red-dark:   #a70209;
	--twc-red-soft:   #fdecec;
	--twc-ink:        #0f172a;
	--twc-ink-2:      #1f2937;
	--twc-muted:      #64748b;
	--twc-line:       #e5e7eb;
	--twc-line-2:     #f1f5f9;
	--twc-surface:    #ffffff;
	--twc-bg:         #f7f8fa;
	--twc-warn:       #b45309;
	--twc-green:      #16a34a;
	--twc-radius:     12px;
	--twc-radius-sm:  8px;
	--twc-shadow-sm:  0 1px 2px rgba(15, 23, 42, .06);
	--twc-shadow:     0 4px 14px rgba(15, 23, 42, .08);
	--twc-shadow-lg:  0 20px 40px -12px rgba(15, 23, 42, .25);
	--twc-focus:      0 0 0 3px rgba(207, 3, 12, .25);
	--twc-font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
	                  Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	color: var(--twc-ink);
	font-family: var(--twc-font);
	line-height: 1.55;
	background: var(--twc-bg);
	padding: 24px 0 48px;
}
.twc-boat-page *, .twc-boat-page *::before, .twc-boat-page *::after { box-sizing: border-box; }
.twc-boat-page img { max-width: 100%; height: auto; display: block; }
.twc-boat-page a { color: var(--twc-red); text-decoration: none; }
.twc-boat-page a:hover { text-decoration: underline; }

.twc-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.twc-breadcrumb {
	font-size: 13px;
	color: var(--twc-muted);
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.twc-breadcrumb a { color: var(--twc-muted); text-decoration: none; }
.twc-breadcrumb a:hover { color: var(--twc-red); }
.twc-breadcrumb__sep { opacity: .5; }
.twc-breadcrumb [aria-current="page"] { color: var(--twc-ink); font-weight: 500; }

/* ==========================================================================
   Page hero (H1 + key facts)
   ========================================================================== */
.twc-boat-hero {
	margin: 0 0 20px;
}
.twc-boat-hero__title {
	margin: 0 0 10px;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--twc-ink);
}
.twc-boat-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	color: var(--twc-muted);
	font-size: 14px;
}
.twc-boat-hero__fact {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	padding-right: 16px;
	border-right: 1px solid var(--twc-line);
	line-height: 1.2;
}
.twc-boat-hero__meta > *:last-child,
.twc-boat-hero__fact:last-of-type { border-right: 0; padding-right: 0; }
.twc-boat-hero__fact strong { color: var(--twc-ink); font-weight: 700; }
.twc-boat-hero__spacer { flex: 1; min-width: 0; }
.twc-boat-hero__price {
	font-size: 22px;
	font-weight: 800;
	color: var(--twc-red);
	letter-spacing: -.01em;
}
.twc-boat-hero__price.is-sold { color: var(--twc-ink); text-decoration: line-through; }
@media (max-width: 1024px) {
	.twc-boat-hero__price { font-size: 20px; }
}
@media (max-width: 640px) {
	.twc-boat-hero__fact { padding-right: 12px; }
	.twc-boat-hero__spacer { display: none; }
	.twc-boat-hero__price { width: 100%; margin-top: 4px; }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.twc-boat-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 28px;
	align-items: start;
}
@media (max-width: 1024px) {
	.twc-boat-layout { grid-template-columns: 1fr; }
}

.twc-boat-main { min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.twc-boat-aside { min-width: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.twc-gallery {
	background: var(--twc-surface);
	border-radius: var(--twc-radius);
	box-shadow: var(--twc-shadow-sm);
	overflow: hidden;
}
.twc-gallery__stage {
	position: relative;
	background: #0b1220;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.twc-gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.twc-gallery__slide.is-active { opacity: 1; pointer-events: auto; }
.twc-gallery__slide img { width: 100%; height: 100%; object-fit: contain; }

.twc-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: rgba(15, 23, 42, .55);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background .2s, transform .2s;
	backdrop-filter: blur(6px);
}
.twc-gallery__arrow:hover { background: rgba(15, 23, 42, .8); }
.twc-gallery__arrow:focus-visible { outline: none; box-shadow: var(--twc-focus); }
.twc-gallery__arrow:active { transform: translateY(-50%) scale(.95); }
.twc-gallery__arrow svg { width: 22px; height: 22px; }
.twc-gallery__arrow--prev { left: 14px; }
.twc-gallery__arrow--next { right: 14px; }

.twc-gallery__zoom {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, .7);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: background .2s;
}
.twc-gallery__zoom:hover { background: rgba(15, 23, 42, .9); }
.twc-gallery__zoom svg { width: 16px; height: 16px; }

.twc-gallery__counter {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(15, 23, 42, .7);
	color: #fff;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

/* Chips (condition / status) */
.twc-chip {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: #111827;
	color: #fff;
}
.twc-gallery__stage > .twc-chip { position: absolute; top: 14px; left: 14px; z-index: 2; }
.twc-chip--new        { background: var(--twc-green); }
.twc-chip--used       { background: #0ea5e9; }
.twc-chip--consignment{ background: #7c3aed; }
.twc-chip--sold       { background: var(--twc-red); }

/* Thumbnails */
.twc-gallery__thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(90px, 1fr);
	gap: 8px;
	padding: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}
.twc-gallery__thumbs::-webkit-scrollbar { height: 6px; }
.twc-gallery__thumbs::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }

.twc-gallery__thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--twc-radius-sm);
	background: #000;
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	scroll-snap-align: start;
	transition: border-color .2s, transform .2s, opacity .2s;
	opacity: .75;
}
.twc-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.twc-gallery__thumb:hover { opacity: 1; }
.twc-gallery__thumb.is-active {
	border-color: var(--twc-red);
	opacity: 1;
}
.twc-gallery__thumb:focus-visible { outline: none; box-shadow: var(--twc-focus); }

/* ==========================================================================
   Specs
   ========================================================================== */
.twc-specs {
	background: var(--twc-surface);
	border-radius: var(--twc-radius);
	box-shadow: var(--twc-shadow-sm);
	padding: 24px 28px;
}
.twc-specs__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding-bottom: 12px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--twc-line);
}
.twc-specs__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--twc-red);
	letter-spacing: -.01em;
}
.twc-specs__stock {
	font-size: 13px;
	color: var(--twc-muted);
}
.twc-specs__stock strong { color: var(--twc-ink); font-weight: 600; }

.twc-specs__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
}
@media (max-width: 768px) {
	.twc-specs__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.twc-specs__grid { grid-template-columns: 1fr; }
}
.twc-specs__row {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 16px 14px 0;
	border-bottom: 1px solid var(--twc-line-2);
}
.twc-specs__label {
	font-size: 12px;
	font-weight: 500;
	color: var(--twc-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 0;
}
.twc-specs__value {
	font-size: 15px;
	font-weight: 600;
	color: var(--twc-ink);
	margin: 0;
}

/* ==========================================================================
   Description
   ========================================================================== */
.twc-description {
	background: var(--twc-surface);
	border-radius: var(--twc-radius);
	box-shadow: var(--twc-shadow-sm);
	padding: 24px 28px;
}
.twc-description__body { font-size: 16px; color: var(--twc-ink-2); }
.twc-description__body :first-child { margin-top: 0; }
.twc-description__body :last-child  { margin-bottom: 0; }
.twc-description__body h1, .twc-description__body h2, .twc-description__body h3 {
	color: var(--twc-ink);
	letter-spacing: -.01em;
	line-height: 1.25;
	margin: 1.6em 0 .6em;
}
.twc-description__body h2 { font-size: 22px; border-bottom: 2px solid var(--twc-red); padding-bottom: 6px; display: inline-block; }
.twc-description__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}
.twc-description__body th,
.twc-description__body td {
	padding: 10px 12px;
	border: 1px solid var(--twc-line);
	text-align: left;
}
.twc-description__body thead th {
	background: #f8fafc;
	font-weight: 600;
}
.twc-description__body tbody tr:nth-child(even) { background: #fafbfc; }

/* ==========================================================================
   Sticky summary / contact (aside)
   ========================================================================== */
.twc-sticky {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
@media (max-width: 1024px) {
	.twc-sticky { position: static; }
}

.twc-summary {
	background: var(--twc-surface);
	border-radius: var(--twc-radius);
	box-shadow: var(--twc-shadow);
	padding: 22px;
}
.twc-summary__price {
	font-size: 34px;
	font-weight: 800;
	color: var(--twc-red);
	letter-spacing: -.02em;
	margin: 0 0 16px;
	line-height: 1;
}
.twc-summary__price.is-sold { color: var(--twc-ink); text-decoration: line-through; }

.twc-summary__quickspecs {
	list-style: none;
	padding: 14px 0 0;
	margin: 0 0 18px;
	border-top: 1px solid var(--twc-line);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}
.twc-summary__quickspecs li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.twc-summary__quickspec-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--twc-muted);
	font-weight: 500;
}
.twc-summary__quickspec-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--twc-ink);
}

/* CTAs */
.twc-summary__ctas {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}
.twc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: var(--twc-radius-sm);
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	transition: background .2s, color .2s, border-color .2s, transform .1s, box-shadow .2s;
	font-family: inherit;
	line-height: 1;
}
.twc-btn:active { transform: translateY(1px); }
.twc-btn:focus-visible { outline: none; box-shadow: var(--twc-focus); }
.twc-btn--primary {
	background: var(--twc-red);
	color: #fff;
}
.twc-btn--primary:hover { background: var(--twc-red-dark); color: #fff; }
.twc-btn--ghost {
	background: #fff;
	color: var(--twc-ink);
	border-color: var(--twc-line);
}
.twc-btn--ghost:hover { border-color: var(--twc-ink); color: var(--twc-ink); }
.twc-btn--ghost svg { width: 16px; height: 16px; }
.twc-btn--block { width: 100%; }
.twc-btn.is-hidden { display: none; }

/* Share row */
.twc-summary__share {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--twc-line);
}
.twc-summary__share-label {
	font-size: 12px;
	color: var(--twc-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 600;
	margin-right: 4px;
}
.twc-share {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	background: #f1f5f9;
	color: var(--twc-ink);
	border: 0;
	cursor: pointer;
	transition: background .2s, color .2s, transform .1s;
}
.twc-share:hover { background: var(--twc-red); color: #fff; text-decoration: none; }
.twc-share:active { transform: scale(.95); }
.twc-share svg { width: 16px; height: 16px; }
.twc-share--copy.is-copied { background: var(--twc-green); color: #fff; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.twc-contact {
	background: var(--twc-surface);
	border-radius: var(--twc-radius);
	box-shadow: var(--twc-shadow);
	padding: 22px;
}
.twc-contact__title {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
	color: var(--twc-ink);
}
.twc-contact__dealer {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--twc-muted);
}
.twc-contact__dealer a { color: var(--twc-red); font-weight: 600; }

.twc-field {
	position: relative;
	margin-bottom: 12px;
}
.twc-field input,
.twc-field textarea {
	width: 100%;
	padding: 18px 14px 8px;
	border: 1px solid var(--twc-line);
	border-radius: var(--twc-radius-sm);
	background: #fff;
	font-family: inherit;
	font-size: 15px;
	color: var(--twc-ink);
	transition: border-color .2s, box-shadow .2s;
	line-height: 1.3;
}
.twc-field textarea { min-height: 110px; padding-top: 22px; resize: vertical; }
.twc-field input:focus,
.twc-field textarea:focus {
	outline: none;
	border-color: var(--twc-red);
	box-shadow: var(--twc-focus);
}
.twc-field label {
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: 14px;
	color: var(--twc-muted);
	pointer-events: none;
	transition: top .15s, font-size .15s, color .15s;
	background: transparent;
	padding: 0 4px;
}
.twc-field input:focus + label,
.twc-field input:not(:placeholder-shown) + label,
.twc-field textarea:focus + label,
.twc-field textarea:not(:placeholder-shown) + label {
	top: 4px;
	font-size: 11px;
	color: var(--twc-red);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 600;
}

.twc-contact__fineprint {
	font-size: 11px;
	color: var(--twc-muted);
	margin: 10px 0 0;
	text-align: center;
}

/* ==========================================================================
   Back link
   ========================================================================== */
.twc-back {
	margin: 32px 0 0;
	font-size: 14px;
}
.twc-back a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--twc-muted);
	text-decoration: none;
	font-weight: 500;
}
.twc-back a:hover { color: var(--twc-red); text-decoration: none; }
.twc-back svg { width: 16px; height: 16px; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.twc-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(11, 18, 32, .92);
	display: grid;
	grid-template-columns: 60px 1fr 60px;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}
.twc-lightbox[hidden] { display: none; }
.twc-lightbox__figure {
	margin: 0;
	display: grid;
	place-items: center;
	max-height: 90vh;
	overflow: hidden;
}
.twc-lightbox__figure img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	user-select: none;
}
.twc-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: grid;
	place-items: center;
}
.twc-lightbox__close:hover { background: rgba(255, 255, 255, .2); }
.twc-lightbox__close svg { width: 20px; height: 20px; }
.twc-lightbox__arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: grid;
	place-items: center;
	justify-self: center;
}
.twc-lightbox__arrow:hover { background: rgba(255, 255, 255, .2); }
.twc-lightbox__arrow svg { width: 22px; height: 22px; }
.twc-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Archive
   ========================================================================== */
.twc-archive-header {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.twc-archive-title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: var(--twc-ink);
	letter-spacing: -.02em;
}
.twc-archive-count {
	margin: 0;
	color: var(--twc-muted);
	font-size: 14px;
}
.twc-archive-filter input {
	padding: 10px 14px;
	border: 1px solid var(--twc-line);
	border-radius: 999px;
	min-width: 260px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
}
.twc-archive-filter input:focus {
	outline: none;
	border-color: var(--twc-red);
	box-shadow: var(--twc-focus);
}

/* ==========================================================================
   Card grid used by archive + shortcodes
   ========================================================================== */
.twc-boats-grid {
	display: grid;
	gap: 20px;
	margin: 8px 0 24px;
}
.twc-boats-grid.twc-cols-1 { grid-template-columns: 1fr; }
.twc-boats-grid.twc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.twc-boats-grid.twc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.twc-boats-grid.twc-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
	.twc-boats-grid.twc-cols-3,
	.twc-boats-grid.twc-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.twc-boats-grid { grid-template-columns: 1fr !important; }
}

.twc-boat-card {
	background: var(--twc-surface);
	border: 1px solid var(--twc-line);
	border-radius: var(--twc-radius);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s;
}
.twc-boat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--twc-shadow);
	border-color: transparent;
}
.twc-boat-card__link { color: inherit; text-decoration: none !important; display: block; }
.twc-boat-card__image {
	aspect-ratio: 4 / 3;
	background: #0b1220;
	position: relative;
	overflow: hidden;
}
.twc-boat-card__image img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .4s ease;
}
.twc-boat-card:hover .twc-boat-card__image img { transform: scale(1.04); }
.twc-boat-card__image .twc-chip { position: absolute; top: 12px; left: 12px; }
.twc-boat-card__placeholder {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	color: rgba(255,255,255,.3);
}
.twc-boat-card__placeholder svg { width: 48px; height: 48px; }

.twc-boat-card__body { padding: 14px 16px 16px; }
.twc-boat-card__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--twc-ink);
	letter-spacing: -.01em;
	line-height: 1.3;
}
.twc-boat-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px 8px;
}
.twc-boat-card__meta li {
	font-size: 12px;
	color: var(--twc-ink-2);
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.twc-boat-card__meta strong {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--twc-muted);
	font-weight: 600;
	margin-bottom: 1px;
}
.twc-boat-card__price {
	font-size: 18px;
	font-weight: 800;
	color: var(--twc-red);
	letter-spacing: -.01em;
}

.twc-boats-pagination {
	margin: 24px 0;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
}
.twc-boats-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--twc-line);
	border-radius: var(--twc-radius-sm);
	text-decoration: none;
	color: var(--twc-ink-2);
	font-weight: 500;
	font-size: 14px;
	transition: background .15s, color .15s, border-color .15s;
}
.twc-boats-pagination .page-numbers:hover {
	background: var(--twc-red-soft);
	border-color: var(--twc-red);
	color: var(--twc-red);
}
.twc-boats-pagination .page-numbers.current {
	background: var(--twc-red);
	color: #fff;
	border-color: var(--twc-red);
}
.twc-boats-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--twc-muted);
	font-style: italic;
}

/* ==========================================================================
   Mobile polish
   ========================================================================== */
@media (max-width: 640px) {
	.twc-boat-page { padding: 16px 0 32px; }
	.twc-summary__title { font-size: 20px; }
	.twc-summary__price { font-size: 28px; }
	.twc-specs, .twc-description, .twc-contact { padding: 18px; }
	.twc-gallery__arrow { width: 40px; height: 40px; }
	.twc-gallery__arrow--prev { left: 8px; }
	.twc-gallery__arrow--next { right: 8px; }
	.twc-lightbox { grid-template-columns: 1fr; }
	.twc-lightbox__arrow { position: absolute; top: 50%; transform: translateY(-50%); }
	.twc-lightbox__arrow--prev { left: 12px; }
	.twc-lightbox__arrow--next { right: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.twc-boat-page *,
	.twc-boat-page *::before,
	.twc-boat-page *::after {
		animation: none !important;
		transition: none !important;
	}
}
