/* WooCommerce Specific Styles */

/* Cart icon styling */
.cart-icon {
	width: 20px;
	height: 20px;
	stroke: #FF6B35;
	color: #FF6B35;
	vertical-align: middle;
	display: inline-block;
}

.cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.cart-link:hover .cart-icon {
	opacity: 0.8;
}

/* Full width for checkout pages */
body {
	width: 100% !important;
	max-width: 100% !important;
	overflow-x: hidden;
}

/* Override page-content max-width for checkout/order pages */
.page-content {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 2rem !important;
	left: 0 !important;
	right: 0 !important;
	box-sizing: border-box;
}

/* Override page header */
.page-header {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 4rem 2rem !important;
}

/* Ensure main element is full width */
main {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Ensure woocommerce order pages are full width */
.woocommerce-order {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Woocommerce order verification form styling */
.woocommerce-order form {
	max-width: 600px;
	margin: 3rem auto;
	padding: 2rem;
	background: rgba(255, 107, 53, 0.05);
	border: 2px solid #FF6B35;
	border-radius: 8px;
}

.woocommerce-order form p {
	margin-bottom: 1.5rem;
	color: #333;
	line-height: 1.6;
}

.woocommerce-order form label {
	display: block;
	margin-bottom: 0.5rem;
	color: #0a0a0a;
	font-weight: 600;
}

.woocommerce-order form input[type="email"] {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.woocommerce-order form input[type="email"]:focus {
	outline: none;
	border-color: #FF6B35;
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.woocommerce-order form button {
	background: #FF6B35;
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
}

.woocommerce-order form button:hover {
	background: #e55a24;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ============================================================================
   PRODUCT PAGE HEADER & HERO
   ============================================================================ */

.woocommerce-products-header {
	background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
	color: white;
	padding: 4rem 2rem;
	margin-bottom: 0;
	text-align: center;
}

.woocommerce-products-header h1 {
	color: white;
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
}

/* Product page header section */
.page-header {
	background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
	color: white;
}

.page-header h1 {
	color: white;
}

/* ============================================================================
   PRODUCT PAGE CONTAINER & LAYOUT
   ============================================================================ */

.woocommerce {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: #0a0a0a;
	min-height: calc(100vh - 200px);
}

/* Main product wrapper with dark background */
.woocommerce-main {
	background: #0a0a0a;
	padding: 3rem 2rem;
	margin: 0;
}

/* Product content card */
.woocommerce div.product {
	background: white;
	padding: 0;
	margin: 0;
	border: none;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Product page container inner spacing */
.woocommerce div.product > * {
	padding: 0;
}

.woocommerce div.product .product_title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #0a0a0a;
	padding: 0;
	margin-top: 0;
}

/* ============================================================================
   PRODUCT DETAILS
   ============================================================================ */

.woocommerce-product-details__short-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.8;
	color: #333;
}

.woocommerce div.product .price {
	font-size: 2.2rem;
	color: #FF6B35;
	font-weight: 700;
	margin-bottom: 2rem;
	display: inline-block;
}

.woocommerce div.product .price .woocommerce-Price-amount {
	color: #FF6B35;
}

/* ============================================================================
   PRODUCT FORM & ADD TO CART
   ============================================================================ */

.woocommerce div.product form.cart {
	margin-bottom: 2rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: flex-start;
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 1.5rem;
}

.woocommerce div.product form.cart .quantity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	overflow: hidden;
	width: fit-content;
}

.woocommerce div.product form.cart .quantity input {
	width: 60px;
	border: none;
	text-align: center;
	padding: 0.75rem;
	font-weight: 600;
}

.woocommerce div.product form.cart .quantity button {
	background: #f3f4f6;
	border: none;
	padding: 0.75rem 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #1a1a1a;
}

.woocommerce div.product form.cart .quantity button:hover {
	background: #e5e7eb;
}

/* ============================================================================
   ADD TO CART BUTTON - PRIMARY STYLING
   ============================================================================ */

.woocommerce button.single_add_to_cart_button {
	background-color: #FF6B35 !important;
	color: white !important;
	border: none !important;
	padding: 1.2rem 2.5rem !important;
	font-weight: 700 !important;
	border-radius: 8px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	font-size: 1rem !important;
	display: inline-block !important;
	min-width: 250px !important;
	text-align: center !important;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
}

.woocommerce button.single_add_to_cart_button:hover {
	background-color: #e55a24 !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
}

.woocommerce button.single_add_to_cart_button:active {
	transform: translateY(-1px) !important;
}

/* Secondary button styles (for alternative actions) */
.woocommerce button.button {
	background-color: #0a0a0a;
	color: white;
	border: 1px solid #0a0a0a;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.woocommerce button.button:hover {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
	transform: translateY(-2px);
}

/* ============================================================================
   PRODUCT TABS
   ============================================================================ */

.woocommerce-tabs {
	margin: 3rem -2rem 0 -2rem;
	border-top: none;
	padding-top: 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
	padding: 2rem;
	border-radius: 0 0 12px 12px;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid #FF6B35;
	list-style: none;
	padding: 0;
	flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
}

.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 1rem 0;
	color: #aaa;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	bottom: -2px;
}

.woocommerce-tabs ul.tabs li.active a {
	color: #FF6B35;
	border-bottom-color: #FF6B35;
}

.woocommerce-tabs ul.tabs li a:hover {
	color: #FF6B35;
}

.woocommerce-tabs .woocommerce-tab {
	padding: 2rem;
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
	display: none;
}

.woocommerce-tabs .woocommerce-tab.active {
	display: block;
}

.woocommerce-tab h2 {
	display: none;
}

.woocommerce-tab h3 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: white;
}

.woocommerce-tab p {
	color: #ddd;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.woocommerce-tab ul,
.woocommerce-tab ol {
	margin-left: 2rem;
	color: #ddd;
	line-height: 1.8;
}

.woocommerce-tab li {
	margin-bottom: 0.75rem;
}

/* ============================================================================
   PRODUCT REVIEWS & RATINGS
   ============================================================================ */

/* Hide reviews section and tab completely - not collecting reviews */
.woocommerce-Reviews-title,
#reviews,
.woocommerce-review,
.woocommerce-tabs ul.tabs li a[href*="reviews"],
.woocommerce-tabs ul.tabs li:has(> a[href*="reviews"]) {
	display: none !important;
}

.woocommerce-review .reviewer {
	font-weight: 600;
	color: #FF6B35;
	margin-bottom: 0.5rem;
}

.woocommerce-review .reviewed-on {
	font-size: 0.9rem;
	color: #999;
	margin-bottom: 1rem;
}

.star-rating {
	color: #FF6B35;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.star-rating span {
	color: #FF6B35;
}

.woocommerce-review p {
	color: #ddd;
	line-height: 1.8;
	margin-bottom: 0;
}

.review-form-wrapper {
	background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
	padding: 2rem;
	border-radius: 8px;
	margin-top: 3rem;
	border: 1px solid #FF6B35;
}

.review-form-wrapper h3 {
	color: white;
	margin-bottom: 2rem;
}

.review-form-wrapper form {
	color: #ddd;
}

.review-form-wrapper .form-group {
	margin-bottom: 1.5rem;
}

.review-form-wrapper label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #FF6B35;
}

.review-form-wrapper input,
.review-form-wrapper textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #555;
	border-radius: 6px;
	font-family: inherit;
	color: #0a0a0a;
	background: white;
	transition: border-color 0.3s ease;
}

.review-form-wrapper input:focus,
.review-form-wrapper textarea:focus {
	outline: none;
	border-color: #FF6B35;
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.review-form-wrapper .form-submit {
	margin-top: 1.5rem;
}

.review-form-wrapper .form-submit button {
	background-color: #FF6B35 !important;
	color: white !important;
	padding: 0.75rem 2rem !important;
	font-weight: 600 !important;
	border-radius: 6px !important;
	border: none !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.review-form-wrapper .form-submit button:hover {
	background-color: #e55a24 !important;
	transform: translateY(-2px) !important;
}

.woocommerce-checkout {
	max-width: 800px;
	margin: 2rem auto;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #e5e7eb;
	padding-bottom: 0.5rem;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
	padding: 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	font-family: inherit;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	outline: none;
	border-color: #d97706;
	box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.woocommerce-checkout .order_review {
	background: #f9fafb;
	padding: 2rem;
	border-radius: 6px;
	margin-top: 2rem;
}

.woocommerce .order_review h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.woocommerce-checkout-review-order-table {
	width: 100%;
	margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
	padding: 0.75rem;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}

.woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	font-weight: 600;
}

.woocommerce-checkout .payment_box {
	background: white;
	padding: 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.woocommerce-checkout .place-order {
	text-align: center;
	margin-top: 2rem;
}

.woocommerce-checkout .place-order button {
	width: 100%;
	max-width: none;
	padding: 1rem;
	font-size: 1.1rem;
}

.woocommerce-cart-form {
	background: white;
	padding: 2rem;
	border-radius: 6px;
}

.woocommerce-cart-form table {
	width: 100%;
	margin-bottom: 2rem;
}

.woocommerce-cart-form table th,
.woocommerce-cart-form table td {
	padding: 1rem;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}

.woocommerce-cart-form table th {
	background: #f9fafb;
	font-weight: 600;
}

.cart-totals {
	float: right;
	width: 48%;
	padding: 2rem;
	background: #f9fafb;
	border-radius: 6px;
}

.cart-totals table {
	width: 100%;
}

.cart-totals table tr {
	border-bottom: 1px solid #e5e7eb;
}

.cart-totals table td {
	padding: 0.75rem 0;
}

.cart-totals .woocommerce-Price-amount {
	font-weight: 600;
}

.cart_totals .order-total .woocommerce-Price-amount {
	font-size: 1.2rem;
	color: #d97706;
}

.woocommerce-message {
	background-color: #d1fae5;
	color: #047857;
	padding: 1.5rem;
	border-left: 4px solid #047857;
	border-radius: 4px;
	margin-bottom: 2rem;
}

/* ============================================================================
   RELATED PRODUCTS SECTION
   ============================================================================ */

.related {
	margin: 3rem -2rem -3rem -2rem;
	padding: 2rem;
	background: #0a0a0a !important;
	border-top: 2px solid #FF6B35;
	width: calc(100% + 4rem);
	margin-left: -2rem;
}

.woocommerce-related-products {
	margin: 0;
}

.related h2 {
	color: white;
	font-size: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid #FF6B35;
	position: relative;
}

.related h2::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #FF6B35 0%, transparent 100%);
}

.related ul.products {
	display: flex;
	flex-wrap: nowrap;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.related ul.products li.product {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 10px;
	padding: 1.5rem;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex: 1 1 0;
	min-width: 0;
}

.related ul.products li.product::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.related ul.products li.product:hover {
	border-color: #FF6B35;
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-8px);
	box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.related ul.products li.product:hover::before {
	opacity: 1;
}

.related .woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
}

.related .woocommerce-loop-product__thumbnail {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.related ul.products li.product:hover .woocommerce-loop-product__thumbnail {
	transform: scale(1.05);
}

.related .woocommerce-loop-product__title {
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.related ul.products li.product:hover .woocommerce-loop-product__title {
	color: #FF6B35;
}

.related .woocommerce-Price-amount {
	color: #FF6B35;
	font-weight: 700;
	font-size: 1.2rem;
}

.related .price {
	color: #FF6B35;
	font-weight: 700;
	margin-bottom: 1rem;
	display: block;
}

.related .button {
	background: linear-gradient(135deg, #FF6B35 0%, #e55a24 100%);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	position: relative;
	z-index: 3;
}

.related .button:hover {
	background: linear-gradient(135deg, #e55a24 0%, #d94d1a 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.related .button:active {
	transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================================================ */

@media (max-width: 1024px) {
	.woocommerce {
		padding: 1rem;
	}

	.woocommerce div.product {
		padding: 2rem 1.5rem;
	}

	.woocommerce div.product .product_title {
		font-size: 2rem;
	}

	.woocommerce div.product .price {
		font-size: 1.8rem;
	}

	.woocommerce button.single_add_to_cart_button {
		padding: 1rem 2rem !important;
		min-width: 200px !important;
		font-size: 0.95rem !important;
	}

	/* Related products tablet view */
	.related ul.products {
		grid-template-columns: 1fr;
	}

	.related h2 {
		font-size: 1.6rem;
	}
}

@media (max-width: 768px) {
	.woocommerce {
		padding: 0;
		background: white;
	}

	.page-header {
		padding: 2rem 1rem;
	}

	.page-header h1 {
		font-size: 1.8rem;
	}

	.woocommerce div.product {
		max-width: 100%;
		margin: 0;
		padding: 1.5rem;
		border-radius: 0;
		box-shadow: none;
	}

	.woocommerce div.product .product_title {
		font-size: 1.8rem;
		padding: 1.5rem 0 0 0;
	}

	.woocommerce div.product .price {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.woocommerce div.product form.cart {
		flex-direction: column;
		gap: 1rem;
	}

	.woocommerce button.single_add_to_cart_button {
		padding: 1rem 1.5rem !important;
		min-width: 100% !important;
		font-size: 1rem !important;
		margin-bottom: 1rem;
	}

	.woocommerce-tabs ul.tabs {
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.woocommerce-tabs ul.tabs li a {
		padding: 0.75rem 0;
		font-size: 0.9rem;
	}

	.cart-totals {
		float: none;
		width: 100%;
		margin-top: 2rem;
	}

	.woocommerce-checkout .form-row {
		width: 100% !important;
	}

	.woocommerce-product-details__short-description {
		font-size: 1rem;
	}

	.review-form-wrapper {
		padding: 1.5rem;
	}

	.woocommerce-review {
		padding: 1.5rem;
	}

	/* Related products mobile view */
	.related {
		margin: 0 -1.5rem -1.5rem -1.5rem;
		padding: 2rem 1.5rem;
	}

	.related ul.products {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.related h2 {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}

	.related .woocommerce-loop-product__thumbnail {
		height: 180px;
	}
}

@media (max-width: 480px) {
	.page-header h1 {
		font-size: 1.5rem;
	}

	.woocommerce div.product .product_title {
		font-size: 1.5rem;
	}

	.woocommerce div.product .price {
		font-size: 1.3rem;
	}

	.woocommerce button.single_add_to_cart_button {
		padding: 0.9rem 1rem !important;
		min-width: 100% !important;
		font-size: 0.9rem !important;
		letter-spacing: 0 !important;
	}

	.woocommerce-tabs ul.tabs {
		flex-direction: column;
		gap: 0;
	}

	.woocommerce-tabs ul.tabs li {
		width: 100%;
	}

	.woocommerce-tabs ul.tabs li a {
		padding: 1rem;
		border-left: 3px solid transparent;
		border-bottom: none;
		padding-left: 1.5rem;
	}

	.woocommerce-tabs ul.tabs li.active a {
		border-left-color: #FF6B35;
		border-bottom-color: transparent;
	}

	.woocommerce div.product {
		padding: 1rem;
	}

	.woocommerce-product-details__short-description {
		font-size: 0.95rem;
	}

	/* Related products on small mobile */
	.related {
		margin: 0 -1rem -1rem -1rem;
		padding: 1.5rem 1rem;
	}

	.related h2 {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}

	.related ul.products {
		gap: 1rem;
	}

	.related ul.products li.product {
		margin-bottom: 0;
		padding: 1rem;
	}

	.related .woocommerce-loop-product__title {
		font-size: 0.95rem;
	}

	.related .woocommerce-loop-product__thumbnail {
		height: 160px;
		margin-bottom: 0.75rem;
	}

	.related .button {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}
}

/* ============================================================================
   PRODUCT COMPARISON TABLE
   ============================================================================ */

.product-comparison-table-wrapper {
	background: #0a0a0a;
	padding: 4rem 2rem;
	margin: 3rem -2rem 0 -2rem;
	width: calc(100% + 4rem);
}

.comparison-table-container {
	max-width: 1200px;
	margin: 0 auto;
}

.comparison-table-title {
	color: white;
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.comparison-table-subtitle {
	color: #aaa;
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 3rem;
}

.comparison-table-scroll {
	overflow-x: auto;
	border-radius: 12px;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

/* Table Header */
.comparison-table thead tr {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	border-bottom: 2px solid #FF6B35;
}

.comparison-table th {
	padding: 2rem 1.5rem;
	text-align: center;
	color: white;
	font-weight: 600;
	font-size: 1rem;
}

.comparison-table .feature-column {
	text-align: left;
	color: #aaa;
	font-weight: 500;
	font-size: 0.9rem;
}

.comparison-table .tier-column {
	min-width: 200px;
	position: relative;
}

/* Tier pricing headers */
.tier-name {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: white;
}

.tier-price {
	font-size: 2rem;
	font-weight: 800;
	color: #FF6B35;
	margin-bottom: 0.75rem;
}

.tier-badge {
	display: inline-block;
	background: #FF6B35;
	color: #0a0a0a;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 0.75rem;
}

/* Highlight most popular tier */
.tier-comprehensive {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 8px;
	position: relative;
}

/* Table Body Rows */
.comparison-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background-color 0.3s ease;
}

.comparison-table tbody tr.alt {
	background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:hover {
	background: rgba(255, 107, 53, 0.08);
}

/* Feature names */
.feature-name {
	padding: 1.5rem 1.5rem;
	text-align: left;
	color: #ddd;
	font-weight: 500;
	font-size: 0.95rem;
}

/* Tier data */
.tier-data {
	padding: 1.5rem 1.5rem;
	text-align: center;
	color: #ccc;
	font-size: 0.95rem;
}

.check-mark {
	color: #FF6B35;
	font-weight: 700;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.dash {
	color: #333;
	font-size: 1.5rem;
}

/* CTA Section */
.comparison-cta {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
	border-radius: 12px;
	border: 1px solid rgba(255, 107, 53, 0.2);
}

.comparison-cta-text {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.comparison-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
}

.cta-button.standard {
	background: #555;
	color: white;
}

.cta-button.standard:hover {
	background: #666;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(85, 85, 85, 0.3);
}

.cta-button.comprehensive {
	background: #FF6B35;
	color: #0a0a0a;
	border-color: #FF6B35;
}

.cta-button.comprehensive:hover {
	background: #e55a24;
	border-color: #e55a24;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.cta-button.vip {
	background: linear-gradient(135deg, #FF6B35 0%, #e55a24 100%);
	color: #0a0a0a;
	border-color: #FF6B35;
}

.cta-button.vip:hover {
	background: linear-gradient(135deg, #e55a24 0%, #d94d1a 100%);
	border-color: #d94d1a;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

/* ============================================================================
   RESPONSIVE: COMPARISON TABLE
   ============================================================================ */

@media (max-width: 1024px) {
	.comparison-table-title {
		font-size: 2rem;
	}

	.comparison-table th {
		padding: 1.5rem 1rem;
		font-size: 0.9rem;
	}

	.tier-name {
		font-size: 1rem;
	}

	.tier-price {
		font-size: 1.5rem;
	}

	.comparison-table .tier-column {
		min-width: 160px;
	}

	.feature-name,
	.tier-data {
		padding: 1.2rem 1rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.product-comparison-table-wrapper {
		padding: 2.5rem 1rem;
		margin: 2rem -1rem 0 -1rem;
		width: calc(100% + 2rem);
	}

	.comparison-table-title {
		font-size: 1.6rem;
	}

	.comparison-table-subtitle {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}

	.comparison-table-scroll {
		padding: 1rem;
		margin-bottom: 2rem;
	}

	.comparison-table th {
		padding: 1rem 0.75rem;
		font-size: 0.8rem;
	}

	.tier-name {
		font-size: 0.9rem;
	}

	.tier-price {
		font-size: 1.3rem;
	}

	.tier-badge {
		font-size: 0.65rem;
		padding: 0.3rem 0.75rem;
	}

	.comparison-table .tier-column {
		min-width: 140px;
	}

	.feature-name,
	.tier-data {
		padding: 0.9rem 0.75rem;
		font-size: 0.85rem;
	}

	.check-mark {
		font-size: 1rem;
		margin-right: 0.3rem;
	}

	.comparison-cta {
		padding: 2rem 1.5rem;
		flex-direction: column;
	}

	.cta-button {
		width: 100%;
		padding: 0.9rem 1.5rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.product-comparison-table-wrapper {
		padding: 1.5rem 1rem;
	}

	.comparison-table-title {
		font-size: 1.3rem;
	}

	.comparison-table-subtitle {
		font-size: 0.85rem;
	}

	.comparison-table-scroll {
		padding: 0.75rem;
	}

	.comparison-table th {
		padding: 0.75rem 0.5rem;
		font-size: 0.7rem;
	}

	.tier-name {
		font-size: 0.75rem;
	}

	.tier-price {
		font-size: 1.1rem;
	}

	.comparison-table .tier-column {
		min-width: 110px;
	}

	.feature-name,
	.tier-data {
		padding: 0.75rem 0.5rem;
		font-size: 0.75rem;
	}

	.check-mark {
		font-size: 0.9rem;
	}

	.cta-button {
		font-size: 0.75rem;
		padding: 0.75rem 1rem;
	}
}

/* ============================================================================
   IMAGE STYLING FOR HOMEPAGE SECTIONS
   ============================================================================ */

/* Step images in process section */
.step-image {
	margin: 1.5rem 0;
	overflow: hidden;
	border-radius: 12px;
	max-height: 300px;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.step-image:hover img {
	transform: scale(1.05);
}

/* ============================================================================
   PROCESS SECTION - HOW IT WORKS
   ============================================================================ */

.section-process {
	background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
	padding: 4rem 0;
	position: relative;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.process-step {
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.process-step:hover {
	box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
	border-color: rgba(255, 107, 53, 0.3);
	transform: translateY(-4px);
}

/* Step image - featured at top */
.process-step .step-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin: 0;
	border-radius: 0;
	background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
}

.process-step .step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Step content container */
.process-step > * {
	padding: 0 1.5rem;
}

.process-step > :first-child {
	padding-top: 1.5rem;
}

.process-step > :last-child {
	padding-bottom: 1.5rem;
}

/* Step number badge - positioned better */
.step-number-badge {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #FF6B35 0%, #ff8a5b 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto;
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
	position: relative;
	z-index: 2;
}

.process-step:hover .step-number-badge {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
}

/* Step title - properly aligned and contrasted */
.step-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #0a0a0a;
	margin: 1rem 0 0.75rem 0;
	line-height: 1.4;
	text-align: center;
}

/* Step description - clear and readable */
.step-description {
	font-size: 0.95rem;
	color: #2a2a2a;
	line-height: 1.65;
	margin: 0;
	text-align: center;
	flex-grow: 1;
}

/* Responsive design */
@media (max-width: 1024px) {
	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.process-steps {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-step {
		flex-direction: row;
	}

	.process-step .step-image {
		width: 120px;
		height: 120px;
		border-radius: 8px;
		margin-right: 1rem;
		margin-bottom: 0;
	}

	.process-step > * {
		padding: 0;
	}

	.step-number-badge {
		width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}

	.step-title {
		font-size: 1.1rem;
		text-align: left;
	}

	.step-description {
		text-align: left;
		font-size: 0.9rem;
	}
}

/* Feature section background images */
.section-features {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	position: relative;
}

.section-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 100%);
	pointer-events: none;
	z-index: 1;
}

.section-features > .container {
	position: relative;
	z-index: 2;
}

/* Pricing card images */
.pricing-card {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	transition: all 0.3s ease;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: background 0.3s ease;
	z-index: 1;
}

.pricing-card:hover::before {
	background: rgba(0, 0, 0, 0.6);
}

.pricing-card > * {
	position: relative;
	z-index: 2;
}

.pricing-card.pricing-featured::before {
	background: rgba(255, 107, 53, 0.2);
}

.pricing-card.pricing-featured:hover::before {
	background: rgba(255, 107, 53, 0.15);
}

/* ============================================================================
   SCRIPT SUBMISSION SECTION (ORDER CONFIRMATION PAGE)
   ============================================================================ */

.kelowna-script-submission-section {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
	border: 2px solid #FF6B35;
	border-radius: 12px;
	padding: 3rem 2rem;
	margin-top: 3rem;
	color: #333;
}

.kelowna-script-submission-section h2 {
	color: #0a0a0a;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	text-align: center;
}

.kelowna-script-submission-section > p {
	text-align: center;
	color: #333;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.submission-instructions {
	max-width: 800px;
	margin: 0 auto 2rem;
}

.submission-step {
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.submission-step:last-of-type {
	border-bottom: none;
}

.step-number {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: #FF6B35;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
}

.step-content h4 {
	color: #0a0a0a;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.step-content p {
	color: #2a2a2a;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.submission-email-box {
	background: white;
	border: 2px solid #FF6B35;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
	text-align: center;
}

.submission-email-box a {
	color: #FF6B35;
	text-decoration: none;
	font-size: 1.3rem;
	transition: all 0.3s ease;
}

.submission-email-box a:hover {
	color: #e55a24;
	text-decoration: underline;
}

.submission-email-box strong {
	display: block;
	word-break: break-all;
}

.order-reference {
	background: #f5f5f5;
	border-left: 4px solid #FF6B35;
	padding: 1rem;
	border-radius: 4px;
	margin-top: 0.75rem;
	font-family: monospace;
	color: #0a0a0a;
}

.requirements-list {
	list-style: none;
	padding: 0;
	margin-top: 0.75rem;
}

.requirements-list li {
	padding: 0.5rem 0;
	color: #2a2a2a;
	padding-left: 1.5rem;
	position: relative;
}

.requirements-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #FF6B35;
	font-weight: 700;
}

.vip-bonus,
.comprehensive-bonus {
	background: white;
	border: 2px solid #FF6B35;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 2rem;
	text-align: center;
}

.vip-bonus h4,
.comprehensive-bonus h4 {
	color: #FF6B35;
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}

.vip-bonus p,
.comprehensive-bonus p {
	color: #2a2a2a;
	margin: 0;
}

.submission-cta {
	text-align: center;
	margin: 2rem 0;
}

.submission-cta .button {
	background: #FF6B35;
	color: white;
	border: none;
	padding: 1.2rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.submission-cta .button:hover {
	background: #e55a24;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.submission-contact {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 107, 53, 0.2);
	color: #333;
	font-size: 0.95rem;
}

.submission-contact p {
	margin: 0;
}

/* Responsive: Script Submission Section */

@media (max-width: 768px) {
	.kelowna-script-submission-section {
		padding: 2rem 1.5rem;
		margin-top: 2rem;
	}

	.kelowna-script-submission-section h2 {
		font-size: 1.5rem;
	}

	.submission-step {
		gap: 1.5rem;
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}

	.step-number {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.step-content h4 {
		font-size: 1rem;
	}

	.submission-email-box {
		padding: 1rem;
	}

	.submission-email-box a {
		font-size: 1.1rem;
	}

	.submission-cta .button {
		width: 100%;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.kelowna-script-submission-section {
		padding: 1.5rem 1rem;
		border-width: 1px;
	}

	.kelowna-script-submission-section h2 {
		font-size: 1.3rem;
	}

	.submission-step {
		gap: 1rem;
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.step-number {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.step-content h4 {
		font-size: 0.95rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}

	.submission-email-box {
		padding: 0.75rem;
	}

	.submission-email-box a {
		font-size: 1rem;
	}

	.vip-bonus,
	.comprehensive-bonus {
		padding: 1rem;
	}

	.submission-cta .button {
		font-size: 0.9rem;
		padding: 0.85rem 1.25rem;
	}
}
