/*
Theme Name: PartsDirect (Child of TwentyTwentyFour, standalone build)
Theme URI: https://example.com
Author: PartsDirect Team
Description: OEM parts search & price comparison portal. Prototype build with placeholder data — structure, styling and page-to-page navigation only, no plugins or live data yet.
Version: 0.1.0
Requires PHP: 7.4
Text Domain: partsdirect
*/

/* Tailwind CDN handles almost all styling. The rules below cover the small
   bits of custom CSS the design used that Tailwind's core utilities cannot
   express (accordion max-height transitions, gradients, backdrop blur). */

.gradient-hero {
	background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

.accordion-content {
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
}
.accordion-content.expanded {
	max-height: 900px;
	opacity: 1;
}

.modal-blur {
	backdrop-filter: blur(8px);
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
