@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/**
* Extras CSS
*
* Additional theme styles
**/

:root {
	--color-secondary: #D72C0D;
	--Gray-300: #D5D7DA;
	--Gray-400: #A6A9B0;
	--Gray-600: #535862;
	--Gray-700: #414651;
	--Gray-900: #181D27;
	--green: #649344;
	--border-radius: 8px;
}

p, body, * {
	font-family: 'Inter', sans-serif;
}

p, body, a, a:visited, button {
	color: var(--Gray-900);
}

p, body {
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
}

/* Home page gradient background */
.home {
	background: linear-gradient(to right, #fff, #e8ede4);
	min-height: 100vh;
	width: 100%;
}

/* Remove footer */
.site-footer {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
	margin-block-start: 0;
	margin-block-end: 16px;
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 60px; 
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 36px; 
}

h4 {
	font-size: 22px; 
}

label {
	font-size: 14px;
	color: var(--Gray-700);
	font-weight: 500;
}

a:hover, a:focus, a:active {
	color: var(--color-secondary);
}

/* Nav */
.site-header {
background-color: #1B3A8C;
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	
}

.site-header .site-branding {
	flex-shrink: 0;
	width: 118px;
}

.site-header .site-branding img {
	width: 118px;
	height: auto;
	display: block;
	margin-bottom:25px;
}

.site-header .site-title {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
}

.site-header .site-title a {
	text-decoration: none;
	color: var(--Gray-900);
}

.site-header .site-description {
	display: none;
}

.site-header .main-navigation {
	flex-grow: 1;
	margin-left: 20px;
}

.site-header .main-navigation .menu-toggle {
	display: none;
}

.site-header .main-navigation #primary-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 12px;
}

.site-header .main-navigation #primary-menu li {
	margin: 0;
}

.site-header .main-navigation #primary-menu a {
	font-size: 15px;
	font-weight: 600;
    font-family: Montserrat;
	text-decoration: none;
	color: #F1F5F9;
	padding: 8px 12px;
	display: block;
	transition: color 0.3s ease;
}

.site-header .main-navigation #primary-menu a:hover {
	color: #B8C6D8;
}

.site-header .header-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-header .header-buttons a {
	padding: 10px 24px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	display: inline-block;
}

.site-header .header-buttons .btn-checkout {
	color: #fff;
	background-color: var(--color-secondary);
	border: 2px solid var(--color-secondary);
	display: flex;
	align-items: center;
	gap: 8px;
	padding-left: 16px;
	padding-right: 16px;
}

.site-header .header-buttons .btn-checkout svg {
	width: 16px;
	height: 16px;
}

.site-header .header-buttons .btn-checkout:hover {
	background-color: #335f22;
	border-color: #335f22;
}

@media (max-width: 768px) {

	.site-header .container {
		flex-wrap: wrap;
	}

	.site-header .main-navigation {
		order: 3;
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}

	.site-header .header-buttons {
		order: 2;
	}

	.product-selector-container {
		flex-direction: column;
		gap: 40px;
		min-height: auto;
	}

	.product-selector-content {
		padding-right: 0;
		text-align: center;
	}

	.product-selector-form {
		max-width: 100%;
	}

	.hero-reviews {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-top: 24px;
	}

	.hero-reviews-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

}

.product-selector-content .hero-reviews .hero-reviews-content {
	display: none;
}

.product-selector-wrapper {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.4s ease;
}

.product-selector-wrapper.has-course-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(82, 80, 124, 0.8);
	z-index: 1;
}

.product-selector-wrapper.has-course-image > .container {
	position: relative;
	z-index: 2;
}

.product-selector-wrapper.has-course-image .product-selector-content h1,
.product-selector-wrapper.has-course-image .product-selector-content p,
.product-selector-wrapper.has-course-image .product-selector-content li,
.product-selector-wrapper.has-course-image .product-selector-subtitle,
.product-selector-wrapper.has-course-image .product-selector-features li,
.product-selector-wrapper.has-course-image .hero-reviews-text,
.product-selector-wrapper.has-course-image .rating-score {
	color: #fff;
}

.product-selector-wrapper.has-course-image .product-selector-features li svg {
	fill: #fff;
}

.product-selector-features li svg path {
	stroke: #1B3A8C
}

.product-selector-container {
	display: flex;
	align-items: start;
	gap: 30px;
	padding: 40px 0;
}

.product-selector-content {
	flex: 1;
	padding-right: 60px;
}

.product-selector-content h1 {
	margin-bottom: 24px;
}

.product-selector-features {
	list-style: none;
	margin: 0 0 48px;
	padding: 0;
}

.product-selector-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	margin-bottom: 18px;
	color: var(--Gray-600);
	position: relative;
	padding-left: 0;
}

.product-selector-features li:last-child {
	margin-bottom: 0;
}

.product-selector-features li svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.product-selector-features li img {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

/* Hero Reviews Section */
.hero-reviews {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
}

.hero-reviews-avatars {
	flex-shrink: 0;
}

.hero-reviews-avatars .avatars-image {
	height: 40px;
	width: auto;
	display: block;
}

.hero-reviews-content {
	display: flex;
	align-items: start;
	gap: 6px;
	flex-direction: column;
}

.hero-reviews-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-reviews-rating .stars-image {
	width: 128px;
	height: auto;
	display: block;
}

.hero-reviews-rating .rating-score {
	color: var(--Gray-700);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}

.hero-reviews-text {
	color: var(--Gray-600);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin: 0;
}

.product-selector-form {
	max-width: 440px;
	width: 100%;
	flex-shrink: 0;
	padding: 32px 24px;
	margin-top: 32px;
	box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	background-color: #fff;
}

.product-selector-form .form-heading {
	text-align: center;
	margin-top: 42px;
	margin-bottom: 24px;
}

.product-selector-form .form-field {
	margin-bottom: 20px;
}

.product-selector-form label {
	display: block;
	margin-bottom: 8px;
}

.product-selector-form label::after {
	content: ' *';
	color: var(--green);
}

.product-selector-form input,
.product-selector-form select,
.product-selector-form textarea, .wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
	border: 1px solid var(--Gray-300);
	border-radius: var(--border-radius);
}

.product-selector-form select.jurisdiction-select {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	border: 1px solid var(--Gray-300);
	border-radius: var(--border-radius);
	background-color: #fff;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.product-selector-form select.jurisdiction-select:focus {
	outline: none;
	border-color: var(--color-secondary);
	box-shadow: none;
}

.product-selector-form select.jurisdiction-select:disabled {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

.product-selector-form .select2-container {
	width: 100% !important;
}

.product-selector-form .select2-container .select2-selection--single {
	height: auto;
	min-height: 48px;
	padding: 12px 12px;
	border: 1px solid var(--Gray-300);
	border-radius: var(--border-radius);
	background-color: #fff;
	transition: border-color 0.3s ease;
}

.product-selector-form .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	padding-right: 30px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--Gray-900);
}

.product-selector-form .select2-container .select2-selection--single .select2-selection__placeholder {
	font-size: 15px;
	color: #999;
}

.product-selector-form .select2-container .select2-selection--single .select2-selection__arrow {
	height: 100%;
	top: 2px;
	right: 16px;
}

.product-selector-form .select2-container .select2-selection--single .select2-selection__arrow b {
	border-color: var(--Gray-900) transparent transparent transparent;
	border-width: 6px 4px 0 4px;
	margin-top: -3px;
}

.product-selector-form .select2-container--open .select2-selection--single {
	border-color: var(--color-secondary);
}

.product-selector-form .select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--Gray-900) transparent;
	border-width: 0 4px 6px 4px;
	margin-top: 0;
}

.product-selector-form .select2-container--focus .select2-selection--single {
	outline: none;
	border-color: var(--color-secondary);
}

.select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--color-secondary);
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
	background: var(--Gray-300) !important;
}

.select2-dropdown {
	border: 1px solid var(--Gray-300) !important;
	border-radius: var(--border-radius) !important;
	margin-top: 8px !important;
	box-shadow: none !important;
}

.select2-container--default .select2-dropdown.select2-dropdown--below {
	margin-top: 0px !important;
	border-top: 1px solid var(--Gray-300);
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
	background: var(--color-secondary) !important
}

.select2-container--default .select2-dropdown.select2-dropdown--above {
	margin-bottom: 8px !important;
	border-bottom: 1px solid var(--Gray-300);
}

.select2-container--default .select2-search--dropdown {
	padding: 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid var(--Gray-300);
	border-radius: var(--border-radius);
	padding: 10px 12px;
	font-size: 15px;
	outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
	border-color: var(--color-secondary);
	outline: none;
}

.select2-container--default .select2-results__option {
	padding: 10px 12px;
	font-size: 16px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--color-secondary);
	color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #f5f5f5;
	color: var(--Gray-900);
}

.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
	background-color: var(--color-secondary);
	color: #fff;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 300px;
}

.product-selector-form .product-results .loading {
	text-align: center;
	padding: 20px;
	font-size: 15px;
	color: #666;
}

.product-selector-form .product-results .no-products {
	text-align: center;
	padding: 0px;
	margin-bottom: 0;
	margin-top: 28px;
	font-size: 15px;
	color: #999;
}

.product-category {
	color: var(--Gray-900, var(--Gray-900));
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 16px;
}

.product-item .add-to-cart-wrapper {
	margin-top: 16px;
}

.buy-now-button {
	display: block;
	width: 100%;
	margin-top: 24px;
	padding: 24px 24px;
	font-size: 17px;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: var(--color-secondary);
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: 0.3s ease;
}

.buy-now-button:hover {
	opacity: 0.8;
}

.buy-now-button.loading {
	font-size: 17px !important;
	padding: 24px 24px !important;
}

.product-item .button:hover,
.product-item .ajax_add_to_cart:hover,
.product-item .buy-now-button:hover {
	background-color: #D72C0D;
}

.product-item .ajax_add_to_cart.loading,
.product-item .buy-now-button.loading {
	opacity: 0.6;
	cursor: wait;
}

.product-item .ajax_add_to_cart.added,
.product-item .buy-now-button.added {
	background-color: #28a745;
}

.product-item .ajax_add_to_cart.added:hover,
.product-item .buy-now-button.added:hover {
	background-color: #218838;
}

@media (max-width: 768px) {

	.products-grid {
		grid-template-columns: 1fr;
	}

}

.products-list {
	margin-top: 24px;
}

.product-option {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
	margin-bottom: 12px;
	border: 1px solid var(--Gray-300);
	border-radius: var(--border-radius);
	background-color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	cursor: pointer;
}

.product-option:last-child {
	margin-bottom: 0;
}

.product-option:hover {
	border-color: rgba(70, 126, 46, 0.3);
	background-color: rgba(70, 126, 46, 0.02);
}

.product-option-header {
	flex: 1;
	min-width: 0;
}

.product-option-title {
	margin: 0 0 6px 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--Gray-900);
	line-height: 1.4;
	font-family: Inter, sans-serif;
}

.product-option-description {
	margin: 0;
	font-size: 15px;
	color: var(--Gray-600);
	line-height: 1.5;
	font-family: Inter, sans-serif;
}

.product-option-description p {
	margin: 0;
}

.product-option-button {
	width: 100%;
	padding: 18px 24px !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #fff;
	background-color: var(--color-secondary);
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: Inter, sans-serif;
}

.product-option-button:hover {
	background-color: #335f22;
}

.product-option-button.loading {
	opacity: 0.6;
	cursor: wait;
}

.product-option-button.added {
	background-color: #28a745;
}

.product-option-button.added:hover {
	background-color: #218838;
}

/* Checkout Block Customizations */

.wc-block-components-checkout-step__title,
.wc-block-components-title.wc-block-components-title,
.wc-pao-checkout-addons h3,
.checkout-wrapper h3,
.dlc-trust-items__title,
.dlc-eligibility-box__title,
.wc-block-components-checkout-order-summary__title-text,
.woocommerce-order-summary__title,
.woocommerce-order-complete-header h5 {
	font-size: 18px !important;
	line-height: 28px !important;
	font-weight: 600 !important;
}

.wc-pao-checkout-addons h3 {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.wc-pao-checkout-addons h3::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../icons/star.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: -3px;
}

/* Wrapper for combined sections */
.checkout-wrapper {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 2rem;
	margin-bottom: 2rem;
}

/* Payment block styling */
.checkout-wrapper #payment-method,
.wc-block-checkout__payment-method {
	border: none !important;
	padding: 0 !important;
	background: transparent !important;
	margin-bottom: 0 !important;
}

.checkout-wrapper #payment-method .wc-block-components-checkout-step__heading {
	margin-bottom: 1.5rem;
}

.wc-block-components-validation-error>p {

	color: #cc1818 !important;

}

.wc-block-components-text-input.wc-block-components-address-form__email {
	margin-top: 4px !important;
}

.wc-block-components-checkout-step__heading {
	margin-bottom: 0 !important;
}

/* Hide "Use another payment method" text as fallback - targets empty or minimal paragraphs after radio controls */
.wc-block-checkout__payment-method .wc-block-components-radio-control + p {
	display: none !important;
}

/* Order Summary Customizations */

/* Make sidebar sticky */
.wc-block-checkout__sidebar,
.wc-block-components-sidebar-layout__sidebar {
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

/* Hide the product summary section completely */
.wp-block-woocommerce-checkout-order-summary-cart-items-block,
.wc-block-components-order-summary {
	display: none !important;
}

/* Change title to "Your order" */
.wc-block-components-sidebar__content .wc-block-components-title,
.wc-block-checkout__sidebar .wc-block-components-title {
	font-size: 20px;
	font-weight: 600;
}

/* Totals section layout - two column */
.wc-block-components-totals-item,
.wc-block-components-totals-footer-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-start !important;
	padding: 12px 0 !important;
	font-size: 16px !important;
	color: var(--Gray-900) !important;
	border: none !important;
}

/* Labels (left side) */
.wc-block-components-totals-item__label {
	flex: 1;
	font-size: 16px !important;
	color: var(--Gray-900) !important;
	text-align: left !important;
}

/* Prices (right side) */
.wc-block-components-totals-item__value {
	font-size: 16px !important;
	color: var(--Gray-900) !important;
	text-align: right !important;
	margin-left: 16px !important;
}

/* Total due styling - bold */
.wc-block-components-totals-footer-item,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-weight: 600 !important;
	font-size: 16px !important;
}

.wc-block-components-totals-item__description-label {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #6E6D7A !important;
	margin-top: -2px;
	transition: color 0.2s ease;
}

.wc-block-components-totals-item__description-label:hover {
	color: #0D0C22 !important;
}

.wc-block-components-totals-item__description-label .chevron {
	display: inline-block;
	transition: transform 0.3s ease, fill 0.2s ease;
	fill: #6E6D7A !important;
}

.wc-block-components-totals-item__description-label svg {
	fill: #6E6D7A !important;
	transition: fill 0.2s ease;
}

.wc-block-components-totals-item__description-label:hover .chevron,
.wc-block-components-totals-item__description-label:hover svg {
	fill: #0D0C22 !important;
}

.wc-block-components-totals-item__description-expandable {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}

.wc-block-components-totals-item__description-content {
	padding: 0px 0px 4px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #6E6D7A !important;
	background-color: #f8f8f8;
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.35s ease 0s;
}

.wc-block-components-totals-fees.toggledDescription .wc-block-components-totals-item__description-expandable,
.dlc-product-item.toggledDescription .wc-block-components-totals-item__description-expandable {
	max-height: 1000px;
}

.wc-block-components-totals-fees.toggledDescription .wc-block-components-totals-item__description-content,
.dlc-product-item.toggledDescription .wc-block-components-totals-item__description-content {
	opacity: 1;
	transition: opacity 0.35s ease 0.25s;
}

.wc-block-components-totals-fees.toggledDescription .wc-block-components-totals-item__description-label .chevron,
.dlc-product-item.toggledDescription .wc-block-components-totals-item__description-label .chevron {
	transform: rotate(180deg);
}

.wc-block-components-totals-fees,
.dlc-product-item {
	width: 100%;
}

.fee-breakdown-info {
	font-size: 0.875em;
	margin-top: 4px;
	color: #6E6D7A !important;
}

.fee-breakdown-description {
	font-size: 1em;
	color: #6E6D7A !important;
}

/* Coupon block styling */
.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #ddd;
}

.wp-block-woocommerce-checkout-order-summary-coupon-form-block.dlc-moved {
	order: 999;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
	padding-right: 12px !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
	padding: 0;
	box-shadow: none !important;
}

.wc-block-components-radio-control-accordion-content, .wc-block-components-radio-control--highlight-checked, .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option, .wc-block-checkout__payment-method .wc-block-components-checkout-step__content, .wc-block-checkout__shipping-option .wc-block-components-checkout-step__content, .wc-block-components-radio-control--highlight-checked:after {
	padding: 0 !important;
	border: none !important;
}

.wc-pao-addon-wrap > div {
	margin: 2px 0 4px !important;
}

.wc-pao-addon-wrap input[type="radio"].wc-pao-addon-radio {
	width: 17px !important;
	height: 17px !important;
	min-width: 17px !important;
	min-height: 17px !important;
	margin-top: 3px !important;
	margin-right: 4px !important;
	margin-bottom: 0 !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #D5D7DA;
	border-radius: 50%;
	background-color: white;
	position: relative;
	flex-shrink: 0;
	transition: all 0.2s ease;
	vertical-align: top;
}

.wc-pao-addon-wrap input[type="radio"].wc-pao-addon-radio:checked {
	border-color: #118168 !important;
	background-color: white !important;
}

.wc-pao-addon-wrap input[type="radio"].wc-pao-addon-radio:checked::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #118168;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wc-pao-addon-wrap label {
	display: inline-flex;
	align-items: flex-start;
	cursor: pointer;
	padding: 2px 0;
	line-height: 1.5;
}

/* Terms Container */
.dlc-terms-container {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	padding: 24px;
	position: relative;
}

.dlc-terms-heading {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: var(--Gray-900);
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.dlc-terms-heading::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../icons/license.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: -2px;
}

.dlc-terms-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dlc-term-item {
	display: flex;
	align-items: flex-start;
}

.dlc-term-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	width: 100%;
}

.dlc-term-checkbox {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin: 4px 0 0 0;
	cursor: pointer;
	accent-color: var(--color-secondary);
}

.dlc-term-text {
	flex: 1;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.15px;
	color: rgba(0, 0, 0, 0.87);
}

.dlc-accept-all-terms {
	margin-top: 0px;
	padding: 0;
	font-weight: 500;
	background: none;
	border: none;
	color: var(--color-secondary) !important;
	font-size: 16px;
	position: absolute;
	top: 24px; 
	right: 24px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.dlc-accept-all-terms:hover {
	opacity: 0.7;
}

.wc-block-components-checkout-place-order-button.dlc-terms-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Jurisdiction Icons in Select2 Dropdowns */
.jurisdiction-option {
	display: flex;
	align-items: center;
	gap: 8px;
}

.jurisdiction-icon {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.jurisdiction-name {
	flex: 1;
}

/* Ensure proper alignment in Select2 dropdown results */
.select2-results__option .jurisdiction-option {
	display: flex;
	align-items: center;
}

/* Ensure proper alignment in Select2 selection (selected item) */
.select2-selection__rendered .jurisdiction-option {
	display: flex;
	align-items: center;
}

/* Custom dropdown arrow for select2 */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	background-image: url('../icons/chevron-down.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
	width: 16px;
	height: 100%;
	top: 0;
	right: 8px;
	transition: transform 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: rotate(180deg);
}

.product-squiggly-arrow {
	position: relative;
	width: 100%; 
}

.product-squiggly-arrow img {
	position: absolute;
	top: calc(100% - 10px);
	right: -120px;
	width: 300px;
	height: auto;
}

@media (max-width: 991px) {

	.product-squiggly-arrow img {
		display: none;
	}

}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option {

	padding-left: 2rem !important;

}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input {

left: 0px !important;
margin-top: -1px !important;
	
}

.wc-block-components-text-input:focus-within > label {
	color: #118168 !important;
}

.wc-block-components-combobox:focus-within > label {
	color: #118168 !important;
}

input[type="text"]:focus + label,
input[type="email"]:focus + label,
input[type="tel"]:focus + label,
input[type="number"]:focus + label,
input[type="password"]:focus + label,
select:focus + label,
textarea:focus + label {
	color: #118168 !important;
}

label:has(+ input[type="text"]:focus),
label:has(+ input[type="email"]:focus),
label:has(+ input[type="tel"]:focus),
label:has(+ input[type="number"]:focus),
label:has(+ input[type="password"]:focus),
label:has(+ select:focus),
label:has(+ textarea:focus) {
	color: #118168 !important;
}

.wc-block-gateway-container:has(.wc-block-gateway-input:focus-within) label {
	color: #118168 !important;
}

.wc-block-gateway-input:focus-within ~ label {
	color: #118168 !important;
}

#wc-braintree-credit-card-account-number-hosted:focus-within ~ label,
#wc-braintree-credit-card-expiry-hosted:focus-within ~ label,
#wc-braintree-credit-card-csc-hosted:focus-within ~ label {
	color: #118168 !important;
}

.wc-block-gateway-container.label-focused label,
.wc-block-gateway-container.is-focused label,
label.label-focused {
	color: #118168 !important;
}

.wc-block-gateway-input.braintree-hosted-fields-focused ~ label {
	color: #118168 !important;
}

/* Product Category Tabs */
.category-tabs {
	display: flex;
	gap: 0;
	width: calc(100% + 48px);
	margin-top: -32px;
	margin-left: -24px;
	margin-bottom: 24px;
	border-bottom: 0px solid var(--Gray-300);
}

.category-tab {
	flex: 1;
	padding: 12px 12px;
	font-size: 15px;
	font-weight: 600;
	color: #F1F5F9 !important;
	background: transparent;
	border: none;
	border-radius: 0;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	position: relative;
	text-align: center;
	transition: all 0.15s ease;
}

.category-tab:hover {
	background: rgba(17, 129, 104, 0.05) !important;
	color: rgba(28, 2, 33, 0.80) !important;
	border-bottom-color: transparent !important;
	transition: all 0.15s ease;
}

.category-tab:active {
	background: rgba(17, 129, 104, 0.10) !important;
	color: #1C0221 !important;
	border-bottom-color: transparent !important;
}

.category-tab.active {
	color: #000 !important;
	background: none !important;
	border-bottom: 2px solid #D72C0D !important;
	transition: all 0.15s ease;
}

.category-tab.active:hover {
	border-bottom-color: #649344 !important;
}

@media (max-width: 640px) {
	.category-tab {
		font-size: 13px;
		padding: 12px 8px;
	}
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
	padding: 22px 24px !important;
	font-weight: 500 !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
	min-height: auto !important;
}

.wc-braintree-hosted-fields-saved-token {
	margin-bottom: 0px !important; 
}

.wc-block-gateway-container {
	margin-bottom: 12px !important;
	margin-left: 0px !important;
	margin-top: 0px !important;
}

.wc-block-gateway-container .wc-block-gateway-input {
	padding-left: 8px !important;
}

.wc-block-gateway-container label {
	margin-left: 8px !important;
}