/* ==========================================================================
   Blocksy Child — Additional Component Styles (custom.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   ANNOUNCEMENT / TOPBAR STRIP (example)
   -------------------------------------------------------------------------- */
.announcement-bar {
	background: var( --theme-palette-color-1, #2563eb );
	color: #fff;
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.announcement-bar p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   CUSTOM BUTTON STYLE (matches [child_button] shortcode class)
   -------------------------------------------------------------------------- */
.ct-btn {
	display: inline-block;
	padding: 0.65em 1.4em;
	background: var( --theme-palette-color-1, #2563eb );
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.15s ease;
}

.ct-btn:hover,
.ct-btn:focus {
	background: var( --theme-palette-color-2, #1d4ed8 );
	color: #fff;
	transform: translateY( -1px );
}

/* ==========================================================================
   DYNAMIC WOOCOMMERCE CATEGORIES GRID  [woo_categories_grid]
   Mirrors the original Stackable block design exactly.
   ========================================================================== */

/* ---- Grid wrapper ---- */
.blc-cat-grid {
	display: flex;
	gap: 20px;
	align-items: stretch;
	width: 100%;
}

/* ---- Right column (medium + small-card rows) ---- */
.blc-cat-grid__right {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0; /* prevent flex overflow */
}

/* ---- Bottom row (small cards) ---- */
.blc-cat-grid__bottom {
	display: grid;
	grid-template-columns: repeat( var( --blc-columns, 2 ), 1fr );
	gap: 20px;
	flex: 1 1 0;
}

/* ---- Base card styles (shared) ---- */
.blc-cat-card {
	position: relative;
	display: block;
	padding: 50px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 20px 80px 0px rgba( 193, 199, 212, 0.3 );
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 55%;
	text-decoration: none;
	color: inherit;

	/* Smooth hover transition */
	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.2s ease;
}

.blc-cat-card:hover,
.blc-cat-card:focus-visible {
	background-color: var( --blc-hover-color, #ffc750 );
	box-shadow: 0px 24px 90px 0px rgba( 193, 199, 212, 0.5 );
	transform: translateY( -2px );
	outline: none;
}

/* ---- Overlay (colour wash on hover, matches Stackable :before) ---- */
.blc-cat-card__overlay {
	position: absolute;
	inset: 0;
	background-color: var( --blc-hover-color, #ffc750 );
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
	z-index: 0;
}

.blc-cat-card:hover .blc-cat-card__overlay,
.blc-cat-card:focus-visible .blc-cat-card__overlay {
	opacity: 0; /* kept at 0 — colour handled by background-color, same as Stackable */
}

/* ---- Card content (text sits above overlay) ---- */
.blc-cat-card__content {
	position: relative;
	z-index: 1;
}

.blc-cat-card__name {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: #1e293b;
	transition: color 0.25s ease;
}

.blc-cat-card:hover .blc-cat-card__name,
.blc-cat-card:focus-visible .blc-cat-card__name {
	color: #fff;
}

.blc-cat-card__count {
	font-size: 0.9rem;
	color: #64748b;
	margin: 0;
	transition: color 0.25s ease;
}

.blc-cat-card:hover .blc-cat-card__count,
.blc-cat-card:focus-visible .blc-cat-card__count {
	color: rgba( 255, 255, 255, 0.85 );
}

/* ---- Featured card (large, left column) ---- */
.blc-cat-card--featured {
	flex: 0 0 calc( 50% - 10px ); /* ~half the row, accounting for gap */
	background-size: 80%;
	background-position: center center;
}

/* ---- Medium card (full-width right-top) ---- */
.blc-cat-card--medium {
	flex: 0 0 auto;
}

/* ---- Small cards (bottom grid) ---- */
.blc-cat-grid__bottom .blc-cat-card {
	background-size: 55%;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet (690px – 999px): featured card takes full row, right stacks below */
@media screen and ( min-width: 690px ) and ( max-width: 999px ) {
	.blc-cat-card--featured {
		background-size: 50%;
	}
}

/* Mobile (<= 689px): full single-column stack */
@media screen and ( max-width: 689px ) {
	.blc-cat-grid {
		flex-direction: column;
	}

	.blc-cat-card--featured {
		flex: none;
		min-height: 220px;
		background-size: 50%;
	}

	.blc-cat-grid__bottom {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and ( max-width: 480px ) {
	.blc-cat-grid__bottom {
		grid-template-columns: 1fr;
	}

	.blc-cat-card {
		padding: 30px;
	}
}

/* ==========================================================================
   2. HEADER STYLING
   ========================================================================== */

/* Top Announcement Bar */
.ct-top-bar {
	background-color: var(--brand-white) !important;
	color: var(--brand-text) !important;
	border-bottom: 1px solid var(--brand-borders) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em !important;
}

/* Header Rows */
.ct-header-row {
	background-color: var(--brand-white) !important;
	border-bottom: 1px solid var(--brand-borders) !important;
}

/* Sticky Header on Scroll */
.ct-header [data-sticky="yes"] {
	background-color: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
	border-bottom: 1px solid var(--brand-borders) !important;
}

/* Sticky Header items color state */
.ct-header [data-sticky="yes"] .ct-menu-link,
.ct-header [data-sticky="yes"] .ct-header-cart,
.ct-header [data-sticky="yes"] .ct-header-account {
	color: var(--brand-text) !important;
}

/* Navigation Links */
.ct-menu-link {
	font-family: 'Manrope', sans-serif !important;
	color: var(--brand-text) !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	padding: 10px 15px !important;
	transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ct-menu-link:hover,
.ct-menu-link:focus-visible {
	color: var(--brand-primary) !important;
}

/* Accent Indicator Line under Active Menu Item */
.current-menu-item > .ct-menu-link,
.current-menu-ancestor > .ct-menu-link {
	color: var(--brand-primary) !important;
}

/* Search bar premium look */
/* .ct-search-form {
	border: 1.5px solid var(--brand-borders) !important;
	background-color: var(--brand-muted-bg) !important;
	border-radius: 30px !important; /* Premium pill shape */
	padding: 0 15px !important;
	transition: border-color 0.25s ease, background-color 0.25s ease !important;
	max-width: 320px !important;
}

.ct-search-form:focus-within {
	border-color: var(--brand-primary) !important;
	background-color: var(--brand-white) !important;
}

.ct-search-input {
	color: var(--brand-text) !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
} */

/* Cart, Account, Wishlist Icons */
.ct-header-cart,
.ct-header-account,
.ct-header-wishlist,
.ct-header-search {
	color: var(--brand-text) !important;
	transition: color 0.2s ease !important;
}

.ct-header-cart:hover,
.ct-header-account:hover,
.ct-header-wishlist:hover,
.ct-header-search:hover {
	color: var(--brand-primary) !important;
}

.ct-cart-badge {
	background-color: var(--brand-primary) !important;
	color: var(--brand-white) !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 700 !important;
	font-size: 10px !important;
	border-radius: 50% !important;
}

/* ==========================================================================
   3. CATEGORY NAVIGATION BAR
   ========================================================================== */

.motorcycle-category-nav-wrapper {
	width: 100%;
	background-color: var(--brand-white);
	border-bottom: 1px solid var(--brand-borders);
	padding: 12px 0;
	z-index: 99;
	position: relative;
}

.motorcycle-category-nav-container {
	max-width: var(--theme-block-wide-max-width, 1200px);
	margin: 0 auto;
	padding: 0 20px;
}

.motorcycle-category-nav-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	flex-wrap: nowrap;
}

.motorcycle-category-nav-list::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.motorcycle-category-nav-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	margin-right: 12px;
}

.motorcycle-category-nav-item:last-child {
	margin-right: 0;
}

.motorcycle-category-nav-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--brand-text-sec);
	padding: 8px 16px;
	border-radius: 30px;
	border: 1.5px solid transparent;
	background-color: transparent;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.motorcycle-category-nav-link:hover,
.motorcycle-category-nav-link:focus-visible {
	color: var(--brand-primary);
	border-color: rgba(225, 29, 46, 0.15);
	background-color: rgba(225, 29, 46, 0.05);
}

.motorcycle-category-nav-icon {
	font-size: 18px;
	margin-right: 8px;
	display: inline-flex;
	align-items: center;
}

.motorcycle-category-nav-text {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

@media screen and (max-width: 999px) {
	.motorcycle-category-nav-list {
		justify-content: flex-start;
	}
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.motorcycle-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--brand-dark-bg);
	overflow: hidden;
}

.motorcycle-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 17, 21, 0.4) 0%, rgba(15, 17, 21, 0.8) 100%);
	z-index: 1;
}

.motorcycle-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	text-align: center;
	padding: 40px 20px;
}

.motorcycle-hero-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 800;
	color: var(--brand-primary);
	text-transform: uppercase;
	letter-spacing: 0.25em;
	margin-bottom: 20px;
	display: block;
	animation: fadeInUp 0.8s ease forwards;
}

.motorcycle-hero-title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--brand-white);
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 25px;
	animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.motorcycle-hero-desc {
	font-family: 'Inter', sans-serif;
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.motorcycle-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	animation: fadeInUp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Animations helper */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Button Design System */
.btn-brand-primary,
.wp-block-button__link:not(.is-style-outline) {
	font-family: 'Manrope', sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	background-color: var(--brand-primary) !important;
	color: var(--brand-white) !important;
	padding: 16px 38px !important;
	border-radius: 30px !important;
	border: 1.5px solid var(--brand-primary) !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(225, 29, 46, 0.2) !important;
}

.btn-brand-primary:hover,
.wp-block-button__link:not(.is-style-outline):hover {
	background-color: var(--brand-primary-hover) !important;
	border-color: var(--brand-primary-hover) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(225, 29, 46, 0.3) !important;
}

.btn-brand-secondary,
.wp-block-button__link.is-style-outline {
	font-family: 'Manrope', sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	background-color: transparent !important;
	color: var(--brand-white) !important;
	padding: 16px 38px !important;
	border-radius: 30px !important;
	border: 1.5px solid var(--brand-white) !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer;
}

.btn-brand-secondary:hover,
.wp-block-button__link.is-style-outline:hover {
	background-color: var(--brand-white) !important;
	color: var(--brand-dark-bg) !important;
	transform: translateY(-2px) !important;
}

/* ==========================================================================
   5. PRODUCT CARDS REDESIGN
   ========================================================================== */

.products .product {
	background-color: var(--brand-white) !important;
	border: 1px solid var(--brand-borders) !important;
	border-radius: 8px !important;
	padding: 20px !important;
	position: relative !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 4px 12px rgba(15, 17, 21, 0.02) !important;
}

.products .product:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 16px 36px rgba(15, 17, 21, 0.08) !important;
	border-color: rgba(225, 29, 46, 0.1) !important;
}

/* Image zoom effect on hover */
.products .product .ct-image-container,
.products .product .woocommerce-loop-product__link {
	overflow: hidden !important;
	border-radius: 6px !important;
	display: block !important;
}

.products .product img {
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
	width: 100% !important;
	height: auto !important;
	object-fit: cover !important;
}

.products .product:hover img {
	transform: scale(1.06) !important;
}

/* Product Titles */
.woocommerce-loop-product__title,
.products .product h2,
.products .product h3 {
	font-family: 'Manrope', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--brand-text) !important;
	margin: 15px 0 8px 0 !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
	letter-spacing: -0.01em !important;
}

/* Product Ratings */
.woocommerce .star-rating {
	font-size: 12px !important;
	margin-bottom: 10px !important;
	color: #fbbf24 !important;
}

/* Product Price */
.price {
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: var(--brand-text) !important;
	margin-bottom: 15px !important;
	display: block !important;
}

.price del {
	color: var(--brand-text-sec) !important;
	font-size: 14px !important;
	margin-right: 6px !important;
}

.price ins {
	text-decoration: none !important;
	color: var(--brand-primary) !important;
}

/* Add to Cart button inside cards */
.products .product .button.add_to_cart_button,
.products .product .button.ajax_add_to_cart,
.products .product .button.product_type_simple {
	font-family: 'Manrope', sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	background-color: var(--brand-primary) !important;
	color: var(--brand-white) !important;
	border: 1.5px solid var(--brand-primary) !important;
	border-radius: 4px !important;
	padding: 12px 20px !important;
	text-align: center !important;
	width: 100% !important;
	display: block !important;
	margin-top: auto !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: none !important;
}

.products .product .button.add_to_cart_button:hover,
.products .product .button.ajax_add_to_cart:hover {
	background-color: var(--brand-primary-hover) !important;
	border-color: var(--brand-primary-hover) !important;
	color: var(--brand-white) !important;
}

/* Wishlist Button Overlay on Product Cards */
.products .product .yith-wcwl-add-to-wishlist,
.products .product .ct-wishlist-button {
	position: absolute !important;
	top: 15px !important;
	right: 15px !important;
	z-index: 10 !important;
	background-color: var(--brand-white) !important;
	border: 1px solid var(--brand-borders) !important;
	border-radius: 50% !important;
	width: 36px !important;
	height: 36px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	opacity: 0 !important;
	transform: scale(0.9) !important;
	box-shadow: 0 4px 10px rgba(15, 17, 21, 0.05) !important;
}

.products .product:hover .yith-wcwl-add-to-wishlist,
.products .product:hover .ct-wishlist-button {
	opacity: 1 !important;
	transform: scale(1) !important;
}

.products .product .yith-wcwl-add-to-wishlist:hover,
.products .product .ct-wishlist-button:hover {
	border-color: var(--brand-primary) !important;
	color: var(--brand-primary) !important;
}

/* ==========================================================================
   6. HOMEPAGE SECTIONS & BRANDS
   ========================================================================== */

/* Brand Logo Grids */
.brand-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 40px 0;
}

.brand-item img {
	max-height: 40px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.brand-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* Why Choose Us Cards */
.why-choose-us-card {
	background-color: var(--brand-white);
	border: 1px solid var(--brand-borders);
	border-radius: 8px;
	padding: 30px;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	overflow: hidden;
}

.why-choose-us-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: transparent;
	transition: background-color 0.25s ease;
}

.why-choose-us-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(15, 17, 21, 0.05);
}

.why-choose-us-card:hover::before {
	background-color: var(--brand-primary);
}

.why-choose-us-icon {
	font-size: 24px;
	color: var(--brand-primary);
	margin-bottom: 20px;
	display: inline-block;
}

.why-choose-us-title {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 750;
	color: var(--brand-text);
	margin-bottom: 10px;
}

.why-choose-us-desc {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--brand-text-sec);
	line-height: 1.6;
}

/* Customer Reviews / Testimonials */
.testimonial-card {
	background-color: var(--brand-white);
	border: 1px solid var(--brand-borders);
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(15, 17, 21, 0.01);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	box-shadow: 0 12px 30px rgba(15, 17, 21, 0.05);
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 14px;
	margin-bottom: 15px;
}

.testimonial-quote {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--brand-text-sec);
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-author-name {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--brand-text);
}

/* Premium Newsletter Box */
.newsletter-wrapper {
	background-color: var(--brand-dark-sec);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 60px 40px;
	text-align: center;
	max-width: 800px;
	margin: 60px auto;
}

.newsletter-title {
	font-family: 'Manrope', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--brand-white);
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.newsletter-desc {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--brand-text-sec);
	margin-bottom: 30px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.newsletter-input {
	background-color: var(--brand-dark-bg) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 30px !important;
	color: var(--brand-white) !important;
	padding: 14px 25px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	flex: 1 1 250px;
	transition: all 0.25s ease !important;
}

.newsletter-input:focus {
	border-color: var(--brand-primary) !important;
	outline: none;
}

.newsletter-btn {
	background-color: var(--brand-primary) !important;
	color: var(--brand-white) !important;
	border: none !important;
	border-radius: 30px !important;
	padding: 14px 35px !important;
	font-family: 'Manrope', sans-serif !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	cursor: pointer;
	transition: all 0.25s ease !important;
	box-shadow: 0 4px 15px rgba(225, 29, 46, 0.2) !important;
}

.newsletter-btn:hover {
	background-color: var(--brand-primary-hover) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 6px 20px rgba(225, 29, 46, 0.3) !important;
}

/* ==========================================================================
   7. FOOTER STYLING
   ========================================================================== */

.ct-footer {
	background-color: var(--brand-dark-bg) !important;
	border-top: 1px solid var(--brand-dark-sec) !important;
	color: var(--brand-text-sec) !important;
	padding-top: 60px !important;
}

.ct-footer .widget-title,
.ct-footer h1,
.ct-footer h2,
.ct-footer h3,
.ct-footer h4,
.ct-footer h5,
.ct-footer h6 {
	color: var(--brand-white) !important;
	font-family: 'Manrope', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	margin-bottom: 25px !important;
	border: none !important;
	padding-bottom: 0 !important;
}

.ct-footer a {
	color: #9CA3AF !important;
	transition: color 0.2s ease !important;
	font-size: 14px !important;
}

.ct-footer a:hover,
.ct-footer a:focus-visible {
	color: var(--brand-primary) !important;
	text-decoration: none !important;
}

.ct-footer ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.ct-footer ul li {
	margin-bottom: 12px !important;
	padding: 0 !important;
}

/* Footer bottom copyright row */
.ct-footer-copy {
	background-color: #0B0C0E !important;
	border-top: 1px solid var(--brand-dark-sec) !important;
	color: #6B7280 !important;
	font-size: 13px !important;
	padding: 25px 0 !important;
}

.ct-footer-copy a {
	color: #6B7280 !important;
}

.ct-footer-copy a:hover {
	color: var(--brand-primary) !important;
}

/* Social icons in footer */
.ct-footer .ct-social-box a {
	background-color: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.05) !important;
	color: #9CA3AF !important;
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ct-footer .ct-social-box a:hover {
	background-color: var(--brand-primary) !important;
	border-color: var(--brand-primary) !important;
	color: var(--brand-white) !important;
	transform: translateY(-2px) !important;
}

/* ==========================================================================
   8. RESPONSIVE IMPROVEMENTS
   ========================================================================== */

/* Tablet & Mobile Layout Refinement */
@media screen and (max-width: 1024px) {
	.motorcycle-hero {
		min-height: 60vh;
	}

	.newsletter-wrapper {
		padding: 40px 20px;
		margin: 40px 20px;
	}

	.brand-grid {
		gap: 30px;
	}
}

@media screen and (max-width: 767px) {
	.motorcycle-hero {
		min-height: 50vh;
	}

	.motorcycle-hero-title {
		margin-bottom: 15px;
	}

	.motorcycle-hero-desc {
		margin-bottom: 25px;
	}

	.motorcycle-hero-buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.btn-brand-primary,
	.btn-brand-secondary,
	.wp-block-button__link {
		width: 100% !important;
		text-align: center !important;
		padding: 14px 20px !important;
	}

	.products .product {
		padding: 15px !important;
	}

	.woocommerce-loop-product__title {
		font-size: 14px !important;
	}

	.brand-grid {
		gap: 20px;
	}

	.brand-item img {
		max-height: 30px;
	}
}

@media screen and (max-width: 480px) {
	.newsletter-form {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.newsletter-input,
	.newsletter-btn {
		width: 100% !important;
	}
}

/* ==========================================================================
   9. DYNAMIC PRODUCT REVIEWS TESTIMONIALS  [product_testimonials]
   ========================================================================== */

.blc-testimonials-section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.blc-testimonials-grid {
	display: grid;
	grid-template-columns: repeat( var( --blc-testimonial-cols, 2 ), 1fr );
	gap: 30px;
	align-items: stretch;
}

.blc-testimonial-card {
	background-color: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 16px;
	padding: 35px 35px 30px;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.blc-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.09);
	border-color: rgba(203, 213, 225, 0.9);
}

.blc-testimonial-top {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.blc-testimonial-avatar-wrap {
	flex: 0 0 60px;
}

.blc-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 2px solid #ffffff;
}

.blc-testimonial-content-wrap {
	flex: 1 1 0;
	min-width: 0;
}

.blc-testimonial-stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 12px;
	color: #f59e0b;
}

.blc-star-icon {
	flex-shrink: 0;
}

.blc-star--filled {
	color: #f59e0b;
}

.blc-star--empty {
	color: #e2e8f0;
}

.blc-testimonial-text {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
}

.blc-testimonial-text p {
	margin: 0 0 10px;
}

.blc-testimonial-text p:last-child {
	margin-bottom: 0;
}

.blc-testimonial-meta {
	margin-top: 15px;
	padding-top: 18px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.blc-testimonial-author {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.01em;
}

.blc-testimonial-role {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #64748b;
}

.blc-testimonial-product-link {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blc-testimonial-product-link:hover {
	color: var(--brand-primary, #e11d2e);
	text-decoration: underline;
}

.blc-testimonials-footer {
	display: flex;
	justify-content: center;
	margin-top: 45px;
}

.blc-testimonials-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #f8fafc;
	color: #0f172a;
	border: 1.5px solid #e2e8f0;
	border-radius: 30px;
	padding: 14px 30px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.blc-testimonials-btn:hover,
.blc-testimonials-btn:focus-visible {
	background-color: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.blc-btn-arrow {
	transition: transform 0.25s ease;
}

.blc-testimonials-btn:hover .blc-btn-arrow {
	transform: translateX(4px);
}

@media screen and (max-width: 900px) {
	.blc-testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blc-testimonial-card {
		padding: 28px 25px 24px;
	}

	.blc-testimonial-top {
		gap: 16px;
	}

	.blc-testimonial-avatar-wrap {
		flex: 0 0 50px;
	}

	.blc-testimonial-avatar {
		width: 50px;
		height: 50px;
	}
}








