/* ===========================
   iXrace Pro System — Styles
   Design Tokens from Elementor Kit
   =========================== */

:root {
	--ixrace-red: #C1001F;
	--ixrace-red-hover: #9B0018;
	--ixrace-dark: #0D0D0D;
	--ixrace-white: #FFFFFF;
	--ixrace-grey: #C5C5C5;
	--ixrace-grey-light: #F5F5F5;
	--ixrace-font-heading: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	--ixrace-font-body: 'Neue Haas Grotesk Display Pro', -apple-system, BlinkMacSystemFont, sans-serif;
	--ixrace-radius: 8px;
	--ixrace-transition: 0.2s ease;
}

/* --- Pro Registration Form --- */
.ixrace-pro-registration {
	max-width: 720px;
	margin: 0 auto;
}

.ixrace-pro-form__row {
	display: flex;
	gap: 20px;
	margin-bottom: 16px;
}

.ixrace-pro-form__field {
	flex: 1;
}

.ixrace-pro-form__field--full {
	margin-bottom: 16px;
}

.ixrace-pro-form__field--autocomplete {
	position: relative;
}

.ixrace-pro-form__field label {
	display: block;
	font-family: var(--ixrace-font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--ixrace-dark);
	margin-bottom: 6px;
}

.ixrace-pro-form__field input,
.ixrace-pro-form__field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--ixrace-grey);
	border-radius: var(--ixrace-radius);
	background: transparent;
	color: var(--ixrace-dark);
	font-family: var(--ixrace-font-body);
	font-size: 15px;
	transition: border-color var(--ixrace-transition);
	box-sizing: border-box;
}

.ixrace-pro-form__field input:focus,
.ixrace-pro-form__field textarea:focus {
	outline: none;
	border-color: var(--ixrace-red);
	box-shadow: 0 0 0 2px rgba(193, 0, 31, 0.1);
}

.ixrace-pro-form__field input::placeholder,
.ixrace-pro-form__field textarea::placeholder {
	color: #999;
}

/* --- Dark Theme Override (for /inscription-particulier/) --- */
.ixrace-pro-registration--dark {
	max-width: 100%;
}

.ixrace-pro-registration--dark .ixrace-pro-form__field label {
	color: rgba(255,255,255,0.6);
}

.ixrace-pro-registration--dark .ixrace-pro-form__field input,
.ixrace-pro-registration--dark .ixrace-pro-form__field textarea {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.15);
	color: #fff;
}

.ixrace-pro-registration--dark .ixrace-pro-form__field input::placeholder,
.ixrace-pro-registration--dark .ixrace-pro-form__field textarea::placeholder {
	color: rgba(255,255,255,0.3);
}

.ixrace-pro-registration--dark .ixrace-pro-form__field input:focus,
.ixrace-pro-registration--dark .ixrace-pro-form__field textarea:focus {
	border-color: rgba(255,255,255,0.4);
	background: rgba(255,255,255,0.12);
	box-shadow: none;
}

.ixrace-pro-registration--dark .ixrace-pro-form__checkbox {
	color: rgba(255,255,255,0.7);
	font-size: 13px;
}

.ixrace-pro-registration--dark .ixrace-pro-form__checkbox a {
	color: #fff;
}

.ixrace-pro-registration--dark .ixrace-pro-form__checkbox input[type="checkbox"] {
	accent-color: #C1001F;
}

.ixrace-pro-registration--dark .ixrace-pro-form__btn {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	border-radius: 50px;
	padding: 14px 32px;
}

.ixrace-pro-registration--dark .ixrace-pro-form__btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

.ixrace-pro-registration--dark .ixrace-pro-form__message--success {
	background: rgba(46,125,50,0.15);
	color: #66bb6a;
	border: 1px solid rgba(46,125,50,0.3);
}

.ixrace-pro-registration--dark .ixrace-pro-form__message--error {
	background: rgba(198,40,40,0.15);
	color: #ef5350;
	border: 1px solid rgba(198,40,40,0.3);
}

/* --- Field-level error message --- */
.ixrace-pro-form__field-error {
	display: block;
	font-family: var(--ixrace-font-body);
	font-size: 12px;
	color: #c62828;
	margin-top: 4px;
}

/* --- Pappers Autocomplete Dropdown --- */
.ixrace-pappers-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--ixrace-white);
	border: 1px solid var(--ixrace-grey);
	border-radius: var(--ixrace-radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: 240px;
	overflow-y: auto;
	margin-top: 4px;
}

.ixrace-pappers-dropdown__item {
	padding: 10px 16px;
	font-family: var(--ixrace-font-body);
	font-size: 14px;
	color: var(--ixrace-dark);
	cursor: pointer;
	transition: background var(--ixrace-transition);
	border-bottom: 1px solid var(--ixrace-grey-light);
}

.ixrace-pappers-dropdown__item:last-child {
	border-bottom: none;
}

.ixrace-pappers-dropdown__item:hover {
	background: var(--ixrace-grey-light);
}

.ixrace-pappers-dropdown__postal {
	color: #999;
	font-size: 13px;
}

.ixrace-pappers-dropdown__loading {
	padding: 12px 16px;
	font-family: var(--ixrace-font-body);
	font-size: 13px;
	color: #999;
	text-align: center;
}

.ixrace-pappers-dropdown__empty {
	padding: 12px 16px;
	font-family: var(--ixrace-font-body);
	font-size: 13px;
	color: #999;
	text-align: center;
}

/* Loading spinner */
.ixrace-pappers-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid var(--ixrace-grey);
	border-top-color: var(--ixrace-red);
	border-radius: 50%;
	animation: ixrace-spin 0.6s linear infinite;
	vertical-align: middle;
	margin-right: 6px;
}

@keyframes ixrace-spin {
	to { transform: rotate(360deg); }
}

.ixrace-pro-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
}

.ixrace-pro-form__checkbox input[type="checkbox"] {
	width: auto;
	margin-top: 2px;
}

.ixrace-pro-form__checkbox a {
	color: var(--ixrace-red);
	text-decoration: underline;
}

.ixrace-pro-form__submit {
	margin-top: 24px;
}

.ixrace-pro-form__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--ixrace-red);
	color: var(--ixrace-white);
	font-family: var(--ixrace-font-body);
	font-size: 15px;
	font-weight: 500;
	padding: 14px 32px;
	border: none;
	border-radius: var(--ixrace-radius);
	cursor: pointer;
	transition: background var(--ixrace-transition), transform 0.1s ease;
}

.ixrace-pro-form__btn:hover {
	background: var(--ixrace-red-hover);
	transform: translateY(-1px);
}

.ixrace-pro-form__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* --- Status Messages --- */
.ixrace-pro-form__message {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
}

.ixrace-pro-form__message--success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}

.ixrace-pro-form__message--error {
	background: #fce4ec;
	color: #c62828;
	border: 1px solid #ef9a9a;
}

/* --- Pro Status Notices --- */
.ixrace-pro-notice {
	padding: 16px 20px;
	border-radius: var(--ixrace-radius);
	margin-bottom: 20px;
	font-family: var(--ixrace-font-body);
	font-size: 14px;
	line-height: 1.5;
}

.ixrace-pro-notice--pending {
	background: #fff8e1;
	color: #f57f17;
	border: 1px solid #ffe082;
}

.ixrace-pro-notice--success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}

/* --- Pro Pricing Display --- */
.ixrace-pro-pricing {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ixrace-pro-price {
	font-size: 18px;
	font-weight: 400;
	font-family: var(--ixrace-font-body);
	color: var(--ixrace-dark);
}

.ixrace-public-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.ixrace-pending-notice {
	display: block;
	font-size: 12px;
	color: #f57f17;
	margin-top: 4px;
}

/* --- Reseller Modal --- */
.ixrace-reseller-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(13, 13, 13, 0.6);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ixrace-reseller-overlay.active {
	display: flex;
}

.ixrace-reseller-modal {
	background: var(--ixrace-white);
	border-radius: 12px;
	max-width: 520px;
	width: 100%;
	padding: 32px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	animation: ixrace-modal-in 0.25s ease;
}

@keyframes ixrace-modal-in {
	from { opacity: 0; transform: translateY(20px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.ixrace-reseller-modal__close {
	position: absolute;
	top: 16px; right: 16px;
	width: 32px; height: 32px;
	background: var(--ixrace-grey-light);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--ixrace-dark);
	transition: background var(--ixrace-transition);
}

.ixrace-reseller-modal__close:hover {
	background: #e0e0e0;
}

.ixrace-reseller-modal h3 {
	font-family: var(--ixrace-font-heading);
	font-size: 24px;
	font-weight: 300;
	color: var(--ixrace-dark);
	margin: 0 0 8px 0;
}

.ixrace-reseller-modal p {
	font-family: var(--ixrace-font-body);
	font-size: 14px;
	color: #666;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.ixrace-reseller-modal select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--ixrace-grey);
	border-radius: var(--ixrace-radius);
	font-family: var(--ixrace-font-body);
	font-size: 15px;
	color: var(--ixrace-dark);
	background: var(--ixrace-white);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230D0D0D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	cursor: pointer;
	margin-bottom: 20px;
}

.ixrace-reseller-modal select:focus {
	outline: none;
	border-color: var(--ixrace-red);
}

.ixrace-reseller-modal__confirm {
	width: 100%;
	padding: 14px;
	background: var(--ixrace-red);
	color: var(--ixrace-white);
	border: none;
	border-radius: var(--ixrace-radius);
	font-family: var(--ixrace-font-body);
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--ixrace-transition);
}

.ixrace-reseller-modal__confirm:hover {
	background: var(--ixrace-red-hover);
}

.ixrace-reseller-modal__confirm:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Fallback inline version (when JS modal fails) */
#ixrace-reseller-wrap {
	background: var(--ixrace-grey-light);
	border: 1px solid #e5e7eb;
	border-radius: var(--ixrace-radius);
	padding: 20px;
	margin-bottom: 20px;
}

#ixrace-reseller-wrap h3 {
	font-family: var(--ixrace-font-heading);
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 8px 0;
}

.ixrace-reseller-info {
	font-size: 13px;
	color: #666;
	margin-bottom: 16px;
}

/* --- My Account Login Form — center on wide screens --- */
body.woocommerce-account form.woocommerce-form-login.login {
	max-width: 480px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
}

body.woocommerce-account form.woocommerce-form-register.register {
	max-width: 480px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.ixrace-pro-form__row {
		flex-direction: column;
		gap: 0;
	}

	.ixrace-pro-form__field {
		margin-bottom: 16px;
	}

	.ixrace-reseller-modal {
		padding: 24px;
		margin: 10px;
	}

	.ixrace-reseller-modal h3 {
		font-size: 20px;
	}
}

/* ===========================
   User Registration — Figma Design
   Split layout: dark form left + visual right
   =========================== */
.ixrace-user-reg {
	display: flex;
	min-height: 100vh;
	background: #0D0D0D;
	color: #fff;
	font-family: var(--ixrace-font-body, 'Neue Haas Grotesk Display Pro', Arial, sans-serif);
}

.ixrace-user-reg__left {
	flex: 1;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 50%;
}

.ixrace-user-reg__right {
	flex: 1;
	position: relative;
	background: url('https://www.ixrace-web.gerermesdomaines.com/wp-content/uploads/product-images/170/DesertInoxWeb.jpg') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ixrace-user-reg__right::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
}

.ixrace-user-reg__visual {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 60px 50px;
}

.ixrace-user-reg__visual-text h2 {
	font-family: var(--ixrace-font-heading, 'FFF Acid Grotesk', Impact, sans-serif);
	font-size: 48px;
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.ixrace-user-reg__login-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 20px 28px;
}

.ixrace-user-reg__login-cta span {
	font-size: 20px;
	font-weight: 500;
}

.ixrace-user-reg__login-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.2s;
}

.ixrace-user-reg__login-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
}

.ixrace-user-reg__title {
	font-family: var(--ixrace-font-heading, 'FFF Acid Grotesk', Impact, sans-serif);
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 8px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ixrace-user-reg__logo {
	height: 42px;
	vertical-align: middle;
}

.ixrace-user-reg__subtitle {
	font-size: 16px;
	color: rgba(255,255,255,0.6);
	margin: 0 0 40px;
}

.ixrace-user-reg__row {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
}

.ixrace-user-reg__field {
	flex: 1;
}

.ixrace-user-reg__field label {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 8px;
}

.ixrace-user-reg__field input {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	color: #fff;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.ixrace-user-reg__field input::placeholder {
	color: rgba(255,255,255,0.3);
}

.ixrace-user-reg__field input:focus {
	outline: none;
	border-color: rgba(255,255,255,0.4);
	background: rgba(255,255,255,0.12);
}

.ixrace-user-reg__checkboxes {
	margin: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ixrace-user-reg__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	cursor: pointer;
}

.ixrace-user-reg__checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: #C1001F;
	flex-shrink: 0;
}

.ixrace-user-reg__checkbox a {
	color: #fff;
	text-decoration: underline;
}

.ixrace-user-reg__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 32px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
}

.ixrace-user-reg__btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

.ixrace-user-reg__btn-arrow {
	font-size: 20px;
}

.ixrace-user-reg__message {
	margin-top: 20px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
}

.ixrace-user-reg__message--success {
	background: rgba(46,125,50,0.15);
	color: #66bb6a;
	border: 1px solid rgba(46,125,50,0.3);
}

.ixrace-user-reg__message--error {
	background: rgba(198,40,40,0.15);
	color: #ef5350;
	border: 1px solid rgba(198,40,40,0.3);
}

@media (max-width: 991px) {
	.ixrace-user-reg {
		flex-direction: column;
	}

	.ixrace-user-reg__left {
		max-width: 100%;
		padding: 40px 24px;
	}

	.ixrace-user-reg__right {
		min-height: 300px;
	}

	.ixrace-user-reg__visual-text h2 {
		font-size: 32px;
	}
}

@media (max-width: 600px) {
	.ixrace-user-reg__row {
		flex-direction: column;
		gap: 16px;
	}

	.ixrace-user-reg__title {
		font-size: 28px;
	}

	.ixrace-user-reg__logo {
		height: 28px;
	}

	.ixrace-user-reg__left {
		padding: 32px 20px;
	}
}

/* ===========================
   Header Icons — Fix empty icon widgets
   =========================== */

/* Account icon (ae79ffe) — inject user SVG */
.elementor-element-ae79ffe .elementor-icon::before {
	content: '' !important;
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

/* ===========================
   Account Popup (4407) — Full Override
   =========================== */

/* Reset ALL containers, widgets, spacing inside popup */
.elementor-4407 .e-con,
.elementor-4407 .e-con-inner {
	gap: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Hide empty icon widgets */
.elementor-4407 .elementor-widget-icon {
	display: none !important;
}

/* Hide ghost container links — nuclear override for all contexts */
.elementor-4407 a.e-con,
.elementor-4407 a.e-con-full,
.elementor-4407 a[class*="e-con"] {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	pointer-events: none !important;
}

/* Force icon-list items to hide any ghost children */
.elementor-4407 .elementor-icon-list-item {
	position: relative !important;
	overflow: hidden !important;
}

.elementor-4407 .elementor-icon-list-item > a[class*="e-con"] {
	display: none !important;
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
}

/* Force list items to only show the real link */
.elementor-4407 .elementor-icon-list-items {
	display: flex !important;
	flex-direction: column !important;
}

/* Root container */
.elementor-4407 .elementor-element[data-id="9e60807"] {
	padding: 0 !important;
	gap: 0 !important;
}

/* Username header */
.elementor-4407 .elementor-element[data-id="5c917fd"] {
	padding: 16px 24px 8px !important;
	gap: 0 !important;
	align-items: flex-start !important;
}

.elementor-4407 .elementor-element[data-id="2e849a5"] .elementor-heading-title {
	font-family: var(--ixrace-font-body) !important;
	font-size: 13px !important;
	color: rgba(255,255,255,0.45) !important;
	font-weight: 400 !important;
	text-align: left !important;
}

/* Menu container */
.elementor-4407 .elementor-element[data-id="43caf2e"] {
	padding: 4px 0 !important;
}

.elementor-4407 .elementor-element[data-id="43caf2e"] > .e-con-inner {
	gap: 0 !important;
}

/* All icon-list widgets */
.elementor-4407 .elementor-widget-icon-list {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.elementor-4407 .elementor-icon-list-items {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.elementor-4407 .elementor-icon-list-item {
	padding: 0 !important;
	margin: 0 !important;
}

/* Menu links — all left aligned with same padding */
.elementor-4407 .elementor-icon-list-item > a {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 12px !important;
	padding: 13px 24px !important;
	color: #fff !important;
	text-decoration: none !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 15px !important;
	line-height: 1.3 !important;
	transition: background 0.15s !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.elementor-4407 .elementor-icon-list-item > a:hover {
	background: rgba(255,255,255,0.06) !important;
}

/* Icons — fixed 22px slot */
.elementor-4407 .elementor-icon-list-icon {
	width: 22px !important;
	min-width: 22px !important;
	flex-shrink: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.elementor-4407 .elementor-icon-list-icon svg {
	width: 18px !important;
	height: 18px !important;
}

/* Empty icon spans — inject missing icons via CSS */
.elementor-4407 .elementor-icon-list-icon:empty {
	display: flex !important;
	width: 22px !important;
	min-width: 22px !important;
}

/* "Mes informations personnelles" (a5d63cd) — user icon */
.elementor-4407 .elementor-element[data-id="a5d63cd"] .elementor-icon-list-icon::before {
	content: '' !important;
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

/* "Mot de passe" (47a0508) — lock icon */
.elementor-4407 .elementor-element[data-id="47a0508"] .elementor-icon-list-icon::before {
	content: '' !important;
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

/* Text — no wrap, ellipsis */
.elementor-4407 .elementor-icon-list-text {
	font-size: 15px !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* Logout section */
.elementor-4407 .elementor-element[data-id="c807ca8"] {
	border-top: 1px solid rgba(255,255,255,0.08) !important;
	margin-top: 8px !important;
	padding: 8px 0 4px !important;
}

.elementor-4407 .elementor-element[data-id="c807ca8"] .elementor-icon-list-item > a {
	color: rgba(255,255,255,0.5) !important;
	font-size: 14px !important;
	justify-content: center !important;
	padding-left: 24px !important;
}

.elementor-4407 .elementor-element[data-id="c807ca8"] .elementor-icon-list-item > a:hover {
	color: #fff !important;
}

/* Popup dialog overrides */
.elementor-popup-modal[data-elementor-id="4407"] .dialog-widget-content {
	max-width: 280px !important;
}

/* ===========================
   WooCommerce My Account — Customer Redesign
   Pixel-perfect match to Figma designs
   =========================== */

/* --- Page-level: hide default page title, dark bg --- */
body.woocommerce-account .entry-title,
body.woocommerce-account .page-title,
body.woocommerce-account .ast-archive-title {
	display: none !important;
}

body.woocommerce-account .entry-content,
body.woocommerce-account .woocommerce {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.woocommerce-account #primary {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}

body.woocommerce-account .site-content > .ast-container {
	max-width: 100% !important;
	padding: 0 !important;
}

/* --- Layout: CSS Grid — left column (back+welcome+nav) + right content --- */
body.woocommerce-account .woocommerce {
	display: grid !important;
	grid-template-columns: 300px 1fr !important;
	grid-template-rows: auto auto 1fr !important;
	min-height: calc(100vh - 80px) !important;
	background: var(--ixrace-dark) !important;
}

/* Back link — left column, row 1 */
.ixrace-account-back {
	grid-column: 1 !important;
	grid-row: 1 !important;
	display: block !important;
	padding: 24px 28px 0 !important;
	color: rgba(255,255,255,0.5) !important;
	text-decoration: none !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 14px !important;
	transition: color 0.15s !important;
	background: #111111 !important;
}

.ixrace-account-back:hover {
	color: #fff !important;
}

/* Empty <p> injected by WC — hide */
body.woocommerce-account .woocommerce > p:empty {
	display: none !important;
}

/* Welcome heading — left column, row 2 */
.ixrace-account-welcome {
	grid-column: 1 !important;
	grid-row: 2 !important;
	padding: 12px 28px 20px !important;
	border-bottom: 1px solid rgba(255,255,255,0.06) !important;
	background: #111111 !important;
}

.ixrace-account-welcome h2 {
	font-family: var(--ixrace-font-heading) !important;
	font-size: 32px !important;
	font-weight: 300 !important;
	line-height: 1.15 !important;
	color: #fff !important;
	margin: 0 !important;
}

/* --- SIDEBAR (navigation) — left column, row 3 --- */
body.woocommerce-account .woocommerce-MyAccount-navigation {
	grid-column: 1 !important;
	grid-row: 3 !important;
	width: auto !important;
	min-width: 0 !important;
	background: #111111 !important;
	padding: 8px 0 0 !important;
	display: flex !important;
	flex-direction: column !important;
	border-right: 1px solid rgba(255,255,255,0.06) !important;
}

/* Navigation list */
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none !important;
	padding: 0 8px !important;
	margin: 0 !important;
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	padding: 14px 20px !important;
	color: rgba(255,255,255,0.7) !important;
	text-decoration: none !important;
	border-radius: 10px !important;
	transition: all 0.15s !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	position: relative !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a::before {
	content: '' !important;
	display: inline-block !important;
	width: 20px !important;
	height: 20px !important;
	flex-shrink: 0 !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

/* Chevron on right */
body.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
	content: '›' !important;
	margin-left: auto !important;
	font-size: 20px !important;
	color: rgba(255,255,255,0.3) !important;
	font-weight: 300 !important;
}

/* --- Nav item icons --- */
/* Orders — box icon */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E") !important;
}

/* Personal info — user icon */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
}

/* Password — lock icon */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-password a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") !important;
}

/* Payment methods — card icon */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") !important;
}

/* Support — headphones icon */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--support a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") !important;
}

/* Hover state */
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: rgba(255,255,255,0.06) !important;
	color: #fff !important;
}

/* Active state */
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: rgba(255,255,255,0.08) !important;
	color: #fff !important;
	font-weight: 500 !important;
}

/* Logout — special styling at bottom */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
	margin-top: auto !important;
	border-top: 1px solid rgba(255,255,255,0.06) !important;
	padding: 8px 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: rgba(255,255,255,0.45) !important;
	font-size: 14px !important;
	justify-content: flex-start !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E") !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::after {
	display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	color: #fff !important;
	background: rgba(255,255,255,0.04) !important;
}

/* --- CONTENT AREA --- */
body.woocommerce-account .woocommerce-MyAccount-content {
	grid-column: 2 !important;
	grid-row: 1 / -1 !important;
	padding: 40px 60px !important;
	color: #fff !important;
	background: var(--ixrace-dark) !important;
	min-height: calc(100vh - 80px) !important;
}

/* Content headings */
body.woocommerce-account .woocommerce-MyAccount-content > h2,
body.woocommerce-account .woocommerce-MyAccount-content > h3,
body.woocommerce-account .woocommerce-MyAccount-content .ixrace-password-form ~ h2 {
	font-family: var(--ixrace-font-heading) !important;
	font-size: 32px !important;
	font-weight: 300 !important;
	color: #fff !important;
	margin: 0 0 32px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content h2 {
	font-family: var(--ixrace-font-heading) !important;
	font-size: 32px !important;
	font-weight: 300 !important;
	color: #fff !important;
	margin: 0 0 32px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
	color: rgba(255,255,255,0.7) !important;
	font-family: var(--ixrace-font-body) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
	color: rgba(255,255,255,0.6) !important;
	text-decoration: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
	color: #fff !important;
}

/* --- Forms (edit-account, password, addresses) --- */
body.woocommerce-account .woocommerce-MyAccount-content label {
	display: block !important;
	color: rgba(255,255,255,0.5) !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	margin-bottom: 8px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="number"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
	width: 100% !important;
	background: rgba(255,255,255,0.06) !important;
	border: 1px solid rgba(255,255,255,0.12) !important;
	border-radius: 10px !important;
	color: #fff !important;
	padding: 14px 18px !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 15px !important;
	transition: border-color 0.15s, background 0.15s !important;
	box-sizing: border-box !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
	border-color: rgba(255,255,255,0.35) !important;
	background: rgba(255,255,255,0.1) !important;
	outline: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input::placeholder {
	color: rgba(255,255,255,0.25) !important;
}

/* Form row side-by-side */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row--first,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row--last {
	width: 48% !important;
	display: inline-block !important;
	vertical-align: top !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row--first {
	margin-right: 4% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row {
	margin-bottom: 20px !important;
}

/* --- Dark Buttons --- */
.ixrace-btn-dark,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
body.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
body.woocommerce-account .woocommerce-MyAccount-content .button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	background: #1a1a1a !important;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 50px !important;
	padding: 14px 32px !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	transition: all 0.15s !important;
	text-decoration: none !important;
}

.ixrace-btn-dark:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover {
	background: #2a2a2a !important;
	border-color: rgba(255,255,255,0.2) !important;
}

/* Full-width save button with icon */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button,
body.woocommerce-account .ixrace-password-form button[type="submit"] {
	width: 100% !important;
	margin-top: 8px !important;
}

/* Save button icon (edit-account form) */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button::after {
	content: '' !important;
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z'/%3E%3Cpolyline points='17 21 17 13 7 13 7 21'/%3E%3Cpolyline points='7 3 7 8 15 8'/%3E%3C/svg%3E") !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	flex-shrink: 0 !important;
}

/* Delete account link — centered below button */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-of-type {
	text-align: center !important;
	margin-top: 20px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-of-type a {
	color: rgba(255,255,255,0.35) !important;
	font-size: 13px !important;
	text-decoration: underline !important;
	text-underline-offset: 3px !important;
}

/* --- Orders — IXRACE Figma Card Design --- */

/* Hide default WC table if still rendered */
body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
	display: none !important;
}

/* Orders wrapper */
.ixrace-orders {
	width: 100%;
}

/* Let the native select dropdown render normally */
body.woocommerce-account .woocommerce-MyAccount-content {
	overflow: visible !important;
}

.ixrace-orders__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.ixrace-orders__title {
	font-family: 'Neue Haas Grotesk Display Pro', -apple-system, sans-serif;
	font-size: 28px;
	font-weight: 500;
	color: #fff;
	margin: 0;
}

.ixrace-orders__filters {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ixrace-orders__search {
	position: relative;
}

.ixrace-orders__search-input {
	padding: 11px 40px 11px 18px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 50px;
	color: rgba(255,255,255,0.85);
	font-family: 'Neue Haas Grotesk Display Pro', -apple-system, sans-serif;
	font-size: 14px;
	font-weight: 400;
	width: 240px;
	outline: none;
	transition: border-color 0.15s;
}

.ixrace-orders__search-input::placeholder {
	color: rgba(255,255,255,0.35);
}

.ixrace-orders__search-input:focus {
	border-color: rgba(255,255,255,0.25);
}

.ixrace-orders__search-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.35);
	pointer-events: none;
}

/* Period dropdown — native select styled as pill */
.ixrace-orders__period {
	position: relative;
}

.ixrace-orders__period-select {
	appearance: none !important;
	-webkit-appearance: none !important;
	padding: 12px 40px 12px 20px !important;
	background-color: rgba(255,255,255,0.06) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 50px !important;
	color: rgba(255,255,255,0.7) !important;
	font-family: 'Neue Haas Grotesk Display Pro', -apple-system, sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	cursor: pointer !important;
	outline: none !important;
	transition: border-color 0.15s;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	background-size: 10px !important;
	min-width: 280px !important;
	width: auto !important;
	height: auto !important;
	line-height: 1.4 !important;
	position: relative;
	z-index: 10;
	box-sizing: border-box !important;
}

.ixrace-orders__period-select:hover {
	border-color: rgba(255,255,255,0.25);
}

.ixrace-orders__period-select:focus {
	border-color: rgba(255,255,255,0.3);
}

.ixrace-orders__period-select option {
	background: #1a1a1a;
	color: #fff;
}

/* Order Card */
.ixrace-order-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 20px;
	transition: border-color 0.15s;
}

.ixrace-order-card:hover {
	border-color: rgba(255,255,255,0.15);
}

/* Status Badge — Figma solid pill */
.ixrace-order-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
	letter-spacing: 0.2px;
}

.ixrace-order-card__badge--delivered {
	background: #4CAF50;
	color: #fff;
}

.ixrace-order-card__badge--processing,
.ixrace-order-card__badge--pending {
	background: #5B7FFF;
	color: #fff;
}

.ixrace-order-card__badge--cancelled {
	background: #888;
	color: #fff;
}

.ixrace-order-card__badge--refunded {
	background: #FF9800;
	color: #fff;
}

.ixrace-order-card__badge--failed,
.ixrace-order-card__badge--default {
	background: rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.7);
}

.ixrace-order-card__badge-icon {
	font-size: 13px;
	line-height: 1;
}

/* Card Body — 2 columns */
.ixrace-order-card__body {
	display: flex;
	gap: 32px;
	margin-bottom: 24px;
}

/* Left: Order info */
.ixrace-order-card__info {
	flex: 0 0 45%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ixrace-order-card__meta {
	display: flex;
	gap: 32px;
}

.ixrace-order-card__meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ixrace-order-card__meta-label {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ixrace-order-card__meta-value {
	font-size: 15px;
	color: #fff;
	font-weight: 500;
}

/* Right: Products */
.ixrace-order-card__products {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ixrace-order-card__product {
	display: flex;
	gap: 16px;
	align-items: center;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 12px;
}

.ixrace-order-card__product-img {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255,255,255,0.05);
}

.ixrace-order-card__product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ixrace-order-card__product-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ixrace-order-card__product-name {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4;
}

.ixrace-order-card__product-price {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.ixrace-order-card__product-qty {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
}

/* Card Footer */
.ixrace-order-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.ixrace-order-card__footer-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.ixrace-order-card__total {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}

.ixrace-order-card__total .woocommerce-Price-amount {
	color: #fff;
	font-weight: 600;
}

.ixrace-order-card__action-link {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.15s;
}

.ixrace-order-card__action-link:hover {
	color: #fff;
}

/* "Suivre la commande" button — pill with arrow circle */
.ixrace-order-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.15s;
	overflow: hidden;
}

.ixrace-order-card__btn span:first-child {
	padding: 12px 16px 12px 24px;
}

.ixrace-order-card__btn-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.08);
	border-left: 1px solid rgba(255,255,255,0.1);
	font-size: 16px;
	flex-shrink: 0;
}

.ixrace-order-card__btn:hover {
	border-color: rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.04);
	color: #fff;
}

.ixrace-order-card__btn:hover .ixrace-order-card__btn-arrow {
	background: rgba(255,255,255,0.12);
}

/* Empty state */
.ixrace-orders__empty {
	text-align: center;
	padding: 60px 20px;
	color: rgba(255,255,255,0.5);
	font-size: 15px;
}

.ixrace-orders__empty .ixrace-order-card__btn {
	margin-top: 20px;
}

/* Pagination */
.ixrace-orders__pagination {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

.ixrace-orders__page-btn {
	padding: 10px 24px;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50px;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.15s;
}

.ixrace-orders__page-btn:hover {
	border-color: rgba(255,255,255,0.35);
	background: rgba(255,255,255,0.06);
	color: #fff;
}

/* Mobile responsive */
@media (max-width: 767px) {
	.ixrace-orders__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ixrace-orders__filters {
		width: 100%;
		flex-direction: column;
	}

	.ixrace-orders__search-input {
		width: 100%;
	}

	.ixrace-orders__period {
		width: 100%;
		justify-content: center;
	}

	.ixrace-order-card {
		padding: 20px;
	}

	.ixrace-order-card__body {
		flex-direction: column;
		gap: 20px;
	}

	.ixrace-order-card__info {
		flex: none;
	}

	.ixrace-order-card__meta {
		flex-direction: column;
		gap: 12px;
	}

	.ixrace-order-card__footer {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.ixrace-order-card__btn {
		width: 100%;
		justify-content: center;
	}
}

/* --- General tables (non-orders) --- */
body.woocommerce-account .woocommerce-MyAccount-content table:not(.woocommerce-orders-table) {
	border-collapse: collapse !important;
	width: 100% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table:not(.woocommerce-orders-table) th {
	background: rgba(255,255,255,0.04) !important;
	color: rgba(255,255,255,0.5) !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	padding: 12px 16px !important;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
	text-align: left !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table:not(.woocommerce-orders-table) td {
	padding: 14px 16px !important;
	border-bottom: 1px solid rgba(255,255,255,0.04) !important;
	color: rgba(255,255,255,0.75) !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 14px !important;
}

/* --- Payment Methods page --- */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentMethods,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-payment-methods {
	border: none !important;
}

/* --- Notices --- */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
	background: rgba(255,255,255,0.04) !important;
	color: rgba(255,255,255,0.7) !important;
	border: 1px solid rgba(255,255,255,0.08) !important;
	border-radius: 10px !important;
	border-left: none !important;
	padding: 16px 20px !important;
	font-family: var(--ixrace-font-body) !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before {
	color: rgba(255,255,255,0.3) !important;
}

body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info {
	background: rgba(255,255,255,0.04) !important;
	color: rgba(255,255,255,0.7) !important;
	border: 1px solid rgba(255,255,255,0.08) !important;
	border-radius: 10px !important;
	border-top: none !important;
}

body.woocommerce-account .woocommerce-error li,
body.woocommerce-account .woocommerce-message li,
body.woocommerce-account .woocommerce-info li {
	color: rgba(255,255,255,0.7) !important;
}

body.woocommerce-account .woocommerce-message {
	border-top: none !important;
	border-left: none !important;
}

/* Stripe payment elements */
body.woocommerce-account .woocommerce-MyAccount-content .wc-stripe-elements-field,
body.woocommerce-account .woocommerce-MyAccount-content #stripe-card-element,
body.woocommerce-account .woocommerce-MyAccount-content .wc-stripe-upe-element {
	background: rgba(255,255,255,0.06) !important;
	border: 1px solid rgba(255,255,255,0.12) !important;
	border-radius: 10px !important;
	padding: 14px 18px !important;
}

/* Address boxes */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
	background: transparent !important;
}

body.woocommerce-account .woocommerce-MyAccount-content address {
	color: rgba(255,255,255,0.6) !important;
	font-style: normal !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info,
body.woocommerce-account .woocommerce-MyAccount-content mark {
	background: rgba(255,255,255,0.06) !important;
	color: rgba(255,255,255,0.6) !important;
}

/* Pro status notice — dark theme */
body.woocommerce-account .ixrace-pro-notice--success {
	background: rgba(193, 0, 31, 0.1) !important;
	color: var(--ixrace-red) !important;
	border: 1px solid rgba(193, 0, 31, 0.3) !important;
}

body.woocommerce-account .ixrace-pro-notice--success strong {
	color: var(--ixrace-red) !important;
}

/* --- Password form --- */
.ixrace-password-form .woocommerce-form-row {
	margin-bottom: 20px !important;
}

/* Password submit — not full-width, left-aligned per Figma */
body.woocommerce-account .ixrace-password-form button[type="submit"] {
	width: auto !important;
	padding: 12px 28px !important;
	font-size: 14px !important;
}

/* --- Support page --- */
.ixrace-support-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 8px;
}

.ixrace-support-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 32px;
}

.ixrace-support-icon {
	width: 48px;
	height: 48px;
	background: rgba(255,255,255,0.06);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.6);
	margin-bottom: 20px;
}

.ixrace-support-card h3 {
	font-family: var(--ixrace-font-body) !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	color: #fff !important;
	margin: 0 0 8px !important;
}

.ixrace-support-card p {
	font-size: 14px !important;
	color: rgba(255,255,255,0.5) !important;
	margin: 0 0 24px !important;
}

.ixrace-support-card .ixrace-btn-dark {
	font-size: 14px !important;
	padding: 10px 24px !important;
}

/* --- Hide password fields inside edit-account (we have separate page) --- */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
	display: none !important;
}

/* Hide display name field — we show first/last name */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row--wide:has(#account_display_name) {
	display: none !important;
}

/* --- Delete account link styling --- */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm p:last-child a {
	color: rgba(255,255,255,0.35) !important;
	font-size: 13px !important;
}

/* --- WooCommerce Cart/Checkout titles (separate from account) --- */
body.woocommerce .entry-title,
body.woocommerce .page-title,
body.woocommerce-cart h1,
body.woocommerce-checkout h1,
body.woocommerce-checkout h3 {
	color: var(--ixrace-red) !important;
	font-family: var(--ixrace-font-heading) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
	body.woocommerce-account .woocommerce {
		flex-direction: column !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100% !important;
		min-width: 100% !important;
		border-right: none !important;
		border-bottom: 1px solid rgba(255,255,255,0.06) !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row !important;
		overflow-x: auto !important;
		padding: 0 16px !important;
		gap: 4px !important;
		-webkit-overflow-scrolling: touch !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation li a {
		white-space: nowrap !important;
		padding: 10px 16px !important;
		font-size: 14px !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
		display: none !important;
	}

	.ixrace-account-welcome {
		padding: 16px 20px 8px !important;
	}

	.ixrace-account-welcome h2 {
		font-size: 24px !important;
	}

	.ixrace-account-back {
		padding: 16px 20px 0 !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-content {
		padding: 24px 20px !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
		margin-top: 0 !important;
		border-top: none !important;
	}

	.ixrace-support-content {
		grid-template-columns: 1fr;
	}

	/* Orders responsive — tablet */
	body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr {
		padding: 16px 20px !important;
	}
}

@media (max-width: 600px) {
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row--first,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row--last {
		width: 100% !important;
		display: block !important;
		margin-right: 0 !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-content h2 {
		font-size: 26px !important;
	}

	/* Orders responsive — mobile */
	body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td {
		display: block !important;
		padding: 4px 0 !important;
	}

	body.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-button,
	body.woocommerce-account .woocommerce-MyAccount-content table .button {
		display: block !important;
		text-align: center !important;
		margin-bottom: 8px !important;
		margin-right: 0 !important;
	}
}

/* ===========================
   Store Locator — Find a Distributor
   =========================== */
.ixrace-locator {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 40px 60px;
	font-family: var(--ixrace-font-body);
}

/* Header: title left + search right */
.ixrace-locator__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.ixrace-locator__title {
	font-family: var(--ixrace-font-heading);
	font-size: 32px;
	font-weight: 300;
	color: #fff;
	margin: 0;
	white-space: nowrap;
}

.ixrace-locator__search {
	position: relative;
	flex-shrink: 0;
	width: 380px;
}

.ixrace-locator__input {
	width: 100% !important;
	padding: 12px 44px 12px 20px !important;
	background: rgba(255,255,255,0.06) !important;
	border: 1px solid rgba(255,255,255,0.2) !important;
	border-radius: 50px !important;
	color: #fff !important;
	font-family: var(--ixrace-font-body) !important;
	font-size: 14px !important;
	outline: none !important;
	transition: border-color 0.2s !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
}

.ixrace-locator__input::placeholder {
	color: rgba(255,255,255,0.4) !important;
}

.ixrace-locator__input:focus {
	border-color: rgba(255,255,255,0.5) !important;
	background: rgba(255,255,255,0.1) !important;
}

.ixrace-locator__search-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* Red divider line */
.ixrace-locator__divider {
	height: 2px;
	background: var(--ixrace-red);
	margin-bottom: 24px;
}

/* Body: list left + map right */
.ixrace-locator__body {
	display: flex;
	gap: 24px;
	height: 600px;
}

/* Left panel — reseller list */
.ixrace-locator__list-panel {
	width: 420px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.ixrace-locator__count {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin: 0 0 16px;
	padding: 0;
}

.ixrace-locator__count strong {
	color: #fff;
}

.ixrace-locator__list {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-right: 8px;
}

/* Custom scrollbar */
.ixrace-locator__list::-webkit-scrollbar {
	width: 4px;
}

.ixrace-locator__list::-webkit-scrollbar-track {
	background: rgba(255,255,255,0.05);
	border-radius: 2px;
}

.ixrace-locator__list::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
}

/* Reseller card */
.ixrace-locator__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.15s;
}

.ixrace-locator__card:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.15);
}

.ixrace-locator__card--active {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.25);
}

.ixrace-locator__card-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.ixrace-locator__card-name {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ixrace-locator__card-location {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}

.ixrace-locator__card-btn {
	flex-shrink: 0;
	padding: 8px 16px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 6px;
	color: rgba(255,255,255,0.7);
	font-family: var(--ixrace-font-body);
	font-size: 12px;
	cursor: pointer;
	transition: all 0.15s;
	white-space: nowrap;
	margin-left: 16px;
}

.ixrace-locator__card-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}

/* Right panel — map */
.ixrace-locator__map-panel {
	flex: 1;
	min-width: 0;
	border-radius: 12px;
	overflow: hidden;
}

.ixrace-locator__map {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
	.ixrace-locator__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ixrace-locator__search {
		width: 100%;
	}

	.ixrace-locator__body {
		flex-direction: column;
		height: auto;
	}

	.ixrace-locator__list-panel {
		width: 100%;
	}

	.ixrace-locator__list {
		max-height: 300px;
	}

	.ixrace-locator__map-panel {
		height: 400px;
	}
}

@media (max-width: 600px) {
	.ixrace-locator {
		padding: 24px 16px 40px;
	}

	.ixrace-locator__title {
		font-size: 24px;
		white-space: normal;
	}

	.ixrace-locator__map-panel {
		height: 300px;
	}
}

/* ── Modal fiche revendeur ── */

.ixrace-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ixrace-modal__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.ixrace-modal__dialog {
	position: relative;
	width: 90%;
	max-width: 560px;
	max-height: 90vh;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
	animation: ixrace-modal-in 0.25s ease-out;
}

@keyframes ixrace-modal-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.ixrace-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 50%;
	font-size: 22px;
	line-height: 36px;
	text-align: center;
	color: #333;
	cursor: pointer;
	transition: background 0.15s;
	z-index: 2;
	padding: 0;
}

.ixrace-modal__close:hover {
	background: rgba(0, 0, 0, 0.12);
	color: #000;
}

.ixrace-modal__body {
	padding: 32px 28px 28px;
	overflow-y: auto;
	max-height: 90vh;
}

.ixrace-modal__title {
	font-size: 24px;
	font-weight: 600;
	color: #111;
	margin: 0 0 20px;
	padding-right: 36px;
	line-height: 1.3;
}

.ixrace-modal__details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.ixrace-modal__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #444;
	line-height: 1.5;
}

.ixrace-modal__row svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.ixrace-modal__row a {
	color: #C1001F;
	text-decoration: none;
	transition: color 0.15s;
}

.ixrace-modal__row a:hover {
	color: #8B0015;
	text-decoration: underline;
}

.ixrace-modal__map {
	width: 100%;
	height: 240px;
	border-radius: 8px;
	overflow: hidden;
	background: #eee;
}

/* Responsive modal */
@media (max-width: 600px) {
	.ixrace-modal__dialog {
		width: 95%;
		max-height: 85vh;
	}

	.ixrace-modal__body {
		padding: 24px 20px 20px;
	}

	.ixrace-modal__title {
		font-size: 20px;
	}

	.ixrace-modal__map {
		height: 180px;
	}
}

/* ===========================
   Pro Registration Success Page
   =========================== */
.ixrace-pro-success {
	max-width: 640px;
	margin: 0 auto;
	font-family: var(--ixrace-font-body);
	color: #333;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ixrace-pro-success__header {
	background: var(--ixrace-dark);
	padding: 32px 40px;
	text-align: center;
}

.ixrace-pro-success__logo {
	height: 40px;
	width: auto;
}

.ixrace-pro-success__body {
	background: #fff;
	padding: 40px;
}

.ixrace-pro-success__badge {
	display: inline-block;
	background: var(--ixrace-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 6px 14px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.ixrace-pro-success__title {
	font-family: var(--ixrace-font-heading);
	font-size: 28px;
	font-weight: 400;
	line-height: 1.3;
	color: #111;
	margin: 0 0 24px;
}

.ixrace-pro-success__text {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0 0 12px;
}

.ixrace-pro-success__card {
	border-left: 3px solid var(--ixrace-red);
	background: #fafafa;
	border-radius: 8px;
	padding: 24px;
	margin: 28px 0;
}

.ixrace-pro-success__card-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px;
}

.ixrace-pro-success__card-title svg {
	color: var(--ixrace-red);
	flex-shrink: 0;
}

.ixrace-pro-success__row {
	display: flex;
	padding: 12px 0;
	border-top: 1px solid #eee;
}

.ixrace-pro-success__row:first-of-type {
	border-top: none;
}

.ixrace-pro-success__label {
	width: 160px;
	flex-shrink: 0;
	font-size: 14px;
	color: #888;
}

.ixrace-pro-success__value {
	font-size: 14px;
	font-weight: 600;
	color: #222;
}

.ixrace-pro-success__actions {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	justify-content: center;
}

.ixrace-pro-success__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.ixrace-pro-success__btn--primary {
	background: var(--ixrace-red);
	color: #fff;
	border: 2px solid var(--ixrace-red);
}

.ixrace-pro-success__btn--primary:hover {
	background: var(--ixrace-red-hover);
	border-color: var(--ixrace-red-hover);
	color: #fff;
}

.ixrace-pro-success__btn--secondary {
	background: transparent;
	color: #555;
	border: 2px solid #ddd;
}

.ixrace-pro-success__btn--secondary:hover {
	border-color: #999;
	color: #222;
}

.ixrace-pro-success__footer {
	background: #1a1a1a;
	padding: 28px 40px;
	text-align: center;
}

.ixrace-pro-success__social {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 16px;
}

.ixrace-pro-success__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.2s ease;
}

.ixrace-pro-success__social a:hover {
	border-color: var(--ixrace-red);
	color: var(--ixrace-red);
}

.ixrace-pro-success__disclaimer {
	font-size: 11px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

@media (max-width: 640px) {
	.ixrace-pro-success__body {
		padding: 24px 20px;
	}

	.ixrace-pro-success__title {
		font-size: 22px;
	}

	.ixrace-pro-success__row {
		flex-direction: column;
		gap: 4px;
	}

	.ixrace-pro-success__label {
		width: auto;
	}

	.ixrace-pro-success__actions {
		flex-direction: column;
	}

	.ixrace-pro-success__btn {
		justify-content: center;
	}
}
