/* X Club — page-xclub.php
   RTL by default (Hebrew), mirrored for LTR (WPML EN/DE) */

/* Global Variables for X Club */
:root {
	--xclub-black: #1C1A17;
	--xclub-white: #ffffff;
	--xclub-gold-0: #B89A5A;
	--xclub-gold-1: #D4AF6A;
	--xclub-gold-2: #B8975A;
	--xclub-gold-3: #8C6D38;
	--xclub-gold: linear-gradient(135deg, var(--xclub-gold-1) 0%, var(--xclub-gold-2) 50%, var(--xclub-gold-3) 100%);
	--xclub-gray-text: #8A8070;
	--xclub-gray-bg: #fafafa;
	--xclub-border: rgba(28,26,23,.1);
	--xclub-radius: 6px;
	--xclub-container: 1420px;
}

/* Base styles applied to xclub components container/sections */
[class*="xclub-"] {
	direction: rtl;
	text-align: right;
	color: var(--xclub-black);
	font-family: 'Assistant', sans-serif;
	box-sizing: border-box;
}

[class*="xclub-"] * {
	box-sizing: border-box;
}

[class*="xclub-"] img {
	max-width: 100%;
	display: block;
}

/* Mirror for LTR languages */
body.ltr [class*="xclub-"],
html[dir="ltr"] [class*="xclub-"] {
	direction: ltr;
	text-align: left;
}

.xclub-container {
	max-width: var(--xclub-container);
	margin: 0 auto;
	padding: 0;
}

.xclub-container--narrow {
	max-width: 820px;
}

.xclub-section {
	padding: 64px 0;
}

@media (max-width: 767px) {
	.xclub-section {
		padding: 40px 0;
	}
}

/* ---------- Typography helpers ---------- */

.xclub-eyebrow {
	font-family: 'DM Sans', sans-serif;
	display: block;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-size: 28.5px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.2em;
}
.xclub-eyebrow-2 {
	font-family: 'DM Sans', sans-serif;
	display: block;
	text-transform: uppercase;
	margin-bottom: 18px;
	font-size: 16px;
	font-weight: 400;
	color: var(--xclub-gold-0);
	letter-spacing: 0.2em;
}
.xclub-eyebrow-3 {
	font-family: 'DM Sans', sans-serif;
	text-transform: uppercase;
	margin-bottom: 17px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	text-align: center;
	color: var(--xclub-gold-0);
	letter-spacing: 2.7pt;
}
.xclub-eyebrow--center {
	text-align: center;
}

.xclub-h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 33px;
}

.xclub-h2-2 h2 {
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 4rem;
	text-align: center;
}

.xclub-h3 h3 {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 9px;
	text-align: center;
}

.xclub-text {
	font-size: 16px;
	line-height: 20px;
	color: var(--xclub-gray-text);
	margin: 0 0 14px;
}

.xclub-text--bold {
	font-weight: 700;
}

@media (max-width: 767px) {
	.xclub-h2 h2 {
		font-size: 18px;
		margin-bottom: 18px;
	}
	.xclub-eyebrow {
		font-size: 14px;
		margin: 0 0 1px;
	}
	.xclub-eyebrow-2 {
		font-size: 12px;
		margin-bottom: 24px;
	}
	.xclub-text {
		font-size: 14px;
	}
	.xclub-h3 h3{
		margin: 0 0 13px;
	}
}

/* ---------- Buttons ---------- */

.xclub-btn,
.xclub-btn_el a {
	display: inline-block;
	padding: 30px 20px;
	border-radius: var(--xclub-radius);
	font-size: 20px;
	line-height: 21px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.xclub-hero__content .xclub-btn {
	display: block;
	width: 100%;
	min-width: 100%;
}

.xclub-btn:hover,
.xclub-btn_el a:hover {
	opacity: 0.85;
}

.xclub-btn--white,
.xclub-btn--white_el a {
	background: var(--xclub-white);
	color: var(--xclub-black);
	width: 100%;
	max-width: 340px;
}
.xclub-btn--white:hover,
.xclub-btn--white_el a:hover{
	color: var(--xclub-black);
}

.xclub-btn--black {
	background: var(--xclub-black);
	color: var(--xclub-white);
}

/* ---------- Hero ---------- */

.xclub-hero {
	position: relative;
	height: 100vh;
	max-height: 950px;
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.xclub-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.xclub-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.xclub-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

body.ltr .xclub-hero__overlay,
html[dir="ltr"] .xclub-hero__overlay {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.xclub-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--xclub-container);
	margin: 0 auto;
	padding: 0 15px;
}
.xclub-hero__content .xch-in{
	max-width: 410px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

body.ltr .xclub-hero__content,
html[dir="ltr"] .xclub-hero__content {
	align-items: flex-start;
	text-align: left;
}

.xclub-hero__title {
	font-size: 98px;
	font-weight: 900;
	color: var(--xclub-white);
	letter-spacing: 0.02em;
	margin: 2px 0 7px;
	text-transform: uppercase;
	line-height: 1;
}

.xclub-hero__subtitle {
	font-size: 28.5px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 18px;
}

@media (max-width: 991px) {
	.xclub-hero {
		height: 70vh;
		max-height: 640px;
	}
}

@media (max-width: 767px) {
	.xclub-hero {
		height: auto;
		max-height: none;
		padding: 26px 0 41vh;
	}

	.xclub-hero__overlay {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	}

	.xclub-hero__content {
		align-items: flex-start;
		text-align: right;
	}

	body.ltr .xclub-hero__content,
	html[dir="ltr"] .xclub-hero__content {
		text-align: left;
	}

	.xclub-hero__title {
		font-size: 48px;
		margin: 0;
	}

	.xclub-btn--white {
		max-width: 100%;
	}
	.xclub-hero__subtitle {
		font-size: 14px;
		margin: 0 0 6px;
	}
	.xclub-hero__content .xclub-btn{
		max-width: 161px;
		display: inline-block;
		min-width: 161px;
		font-size: 14px;
		padding: 16px;
	}
}

/* ---------- HOW IT WORKS ---------- */

.xclub-intro{
	text-align: center;
	padding: 7.3rem 0 2.4rem;
}
.xclub-how__grid {
	display: flex;
	flex-direction: row-reverse;
	gap: 20px;
	margin-top: 32px;
}
.xclub-how__grid_el .elementor-container.elementor-column-gap-custom{
	gap: 20px;
}
body.rtl .xclub-how__grid {
	flex-direction: row;
}

.xclub-how__card {
	flex: 1;
	background: var(--xclub-white);
	border: 1px solid var(--xclub-border);
	border-radius: var(--xclub-radius);
	padding: 19px 25px;
	text-align: center;
	box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
}

.xclub-how__num {
	font-family: 'Heebo', sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 2rem;
}

.xclub-how__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 18px;
}

.xclub-how__text,
.xclub-how__grid_el .elementor-icon-box-description {
	font-size: 15px;
	line-height: 1.6;
	color: var(--xclub-gray-text);
	margin: 0;
}

@media (max-width: 767px) {
	.xclub-how__grid,
	body.rtl .xclub-how__grid {
		flex-direction: column;
	}
	.xclub-intro{
		padding: 3.3rem 0 1rem;
	}
}

/* ---------- Shoes X Rewards ---------- */

.xclub-section.xclub-rewards {
	text-align: center;
	padding: 8.6rem 0 9.5rem;
}
h2..xclub-h2-2,
.xclub-section.xclub-rewards .xclub-h2-2{
	margin-bottom: 3rem;
}

.xclub-rewards__grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 32px;
}
.xclub-rewards__grid_el {

}
body.rtl .xclub-rewards__grid {
	direction: ltr;
}

.xclub-rewards__card {
	padding: 28px 20px 12px;
	text-align: center;
	position: relative;
	background: var(--xclub-white);
	border-radius: 8px;
	box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
}
.xclub-rewards__card:before{
	height: 8px;
	border-radius: 8px 8px 0 0;
	border: 1px solid transparent;
	background: var(--xclub-gold);
	position: absolute;
	content: '';
	width: 100%;
	left: 0;
	top: 0;
}

.xclub-rewards__icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
	margin-bottom: 7px;
}

.xclub-rewards__icon svg {
	width: 100%;
	height: 100%;
}

.xclub-rewards__title {
	font-size: 20px;
	font-weight: 900;
	margin: 0;
}

.xclub-rewards__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--xclub-gray-text);
	margin: 0;
}

.xclub-rewards__cta {
	text-align: center;
	margin-top: 3rem;
}
.xclub-rewards__cta .xclub-btn,
.xclub-btn_el a{
	width: 100%;
	margin: auto;
	display: block;
	max-width: 173px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	padding: 18px 15px;
}

@media (max-width: 991px) {
	.xclub-rewards__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.xclub-rewards__grid {
		grid-template-columns: 1fr;
	}
	.xclub-section.xclub-rewards {
		text-align: center;
		padding: 4.2rem 0 2.3rem;
	}
}

/* ---------- Details ---------- */

.xclub-details__grid {
	display: flex;
	flex-direction: row;
	gap: 16px;
}
body.rtl .xclub-details__grid {
	flex-direction: row-reverse;
}

.xclub-details__col {
	flex: 1;
}

.xclub-details__row {
	display: flex;
	gap: 16px;
}

.xclub-details__box {
	flex: 1;
	background: var(--xclub-white);
	border: 1px solid var(--xclub-border);
	border-radius: var(--xclub-radius);
	padding: 18px 20px 26px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
}
.xclub-details__box_main{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.xclub-details__box_in{
	position: relative;
	width: 196px;
	padding: 0 16px;
}
.xclub-details__box_in:first-child:after{
	content: '';
	width: 1px;
	display: block;
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	background: rgba(184,154,90,0.1);
}

.xclub-details__highlight {
	color: var(--xclub-gold-0);
	font-size: 20px;
	text-align: center;
	font-weight: 900;
	margin: 0 0 5px;
}

.xclub-details__desc {
	font-size: 14px;
	line-height: 1.1;
	font-weight: 600;
	text-align: center;
	margin: 0;
	color: var(--xclub-black);
}

@media (max-width: 767px) {
	.xclub-details__grid,
	body.rtl .xclub-details__grid {
		flex-direction: column;
		gap: 20px;
	}

	.xclub-details__row {
		flex-direction: column;
	}
	.xclub-details__box {
		padding: 24px 20px 26px;
	}
	.xclub-details__box_main{
		flex-direction: column;
		align-items: center;
	}
	.xclub-details__box_in{
		position: relative;
		width: 196px;
		padding: 16px 0 0;
	}
	.xclub-details__box_in:first-child{
		padding-bottom: 16px;
	}
	.xclub-details__box_in:first-child:after{
		content: '';
		width: 100%;
		right: 0;
		top: 100%;
		left: 0;
		height: 1px;
	}
}

/* ---------- FAQ ---------- */
.xclub-faq.xclub-section{
	padding: 8.4rem 0 5rem;
}

.xclub-faq__list {
	margin-top: 32px;
}

.xclub-faq__item {
	border-bottom: 1px solid var(--xclub-border);
}

.xclub-faq__question {
	width: 100%;
	background: none;
	border: 0;
	padding: 20px 4px 3px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--xclub-black);
	cursor: pointer;
	text-align: inherit;
}

.xclub-faq__icon {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-right: 2px solid #888;
	border-bottom: 2px solid #888;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
	margin: 0 8px;
}

.xclub-faq__question[aria-expanded="true"] .xclub-faq__icon {
	transform: rotate(225deg);
}

.xclub-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.3s ease;
}

.xclub-faq__answer > p {
	min-height: 0;
	overflow: hidden;
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--xclub-gray-text);
	padding-inline-end: 24px;
}

.xclub-faq__item.is-open .xclub-faq__answer {
	grid-template-rows: 1fr;
}

@media only screen and (max-width : 768px) {
	.xclub-faq.xclub-section{
		padding: 4rem 0 3rem;
	}
	.xclub-faq .xclub-h2-2,
	.xclub-faq h2.xclub-h2-2{
		margin-bottom: 3.5rem;
	}
}





/* ==========================================================================
   X CLUB — Elementor Custom Styles
   ========================================================================== */

/* --- Variables & RTL Context --- */
.elementor-page {
	--xclub-black: #1C1A17;
	--xclub-gold-1: #D4AF6A;
	--xclub-gold-2: #B8975A;
	--xclub-gold-3: #8C6D38;
	--xclub-gold: linear-gradient(135deg, var(--xclub-gold-1) 0%, var(--xclub-gold-2) 50%, var(--xclub-gold-3) 100%);
	--xclub-gray-text: #8A8070;
	--xclub-border: rgba(28, 26, 23, 0.1);
	--xclub-radius: 6px;
}

/* --- How It Works Section (Icon Boxes with Step Numbers) --- */
.xclub-how-card .elementor-icon-box-wrapper {
	background: #ffffff;
	border: 1px solid var(--xclub-border);
	border-radius: var(--xclub-radius);
	padding: 24px 20px;
	box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.xclub-how-card .elementor-icon-box-icon .elementor-icon {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: var(--xclub-black) !important;
	color: #ffffff !important;
	font-size: 20px !important;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.xclub-how-card .elementor-icon-box-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: var(--xclub-black) !important;
	margin-bottom: 12px !important;
}

.xclub-how-card .elementor-icon-box-description {
	font-size: 15px !important;
	color: var(--xclub-gray-text) !important;
	line-height: 1.6 !important;
}

/* --- Rewards Section Cards --- */
.xclub-reward-card .elementor-icon-box-wrapper {
	position: relative;
	background: #ffffff;
	border-radius: 8px;
	padding: 32px 20px 20px;
	box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

/* Gold Gradient Top Border */
.xclub-reward-card .elementor-icon-box-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--xclub-gold);
	border-radius: 8px 8px 0 0;
}

.xclub-reward-card .elementor-icon-box-icon .elementor-icon {
	font-size: 32px !important;
	margin-bottom: 12px;
}

.xclub-reward-card .elementor-icon-box-title {
	font-size: 20px !important;
	font-weight: 900 !important;
	color: var(--xclub-black) !important;
	margin-bottom: 8px !important;
}

.xclub-reward-card .elementor-icon-box-description {
	font-size: 15px !important;
	color: var(--xclub-gray-text) !important;
	line-height: 1.5 !important;
}

/* --- FAQ Accordion Customization --- */
.elementor-widget-accordion .elementor-accordion-item {
	border-bottom: 1px solid var(--xclub-border) !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
}

.elementor-widget-accordion .elementor-tab-title {
	padding: 18px 0 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: var(--xclub-black) !important;
}

.elementor-widget-accordion .elementor-tab-content {
	padding: 0 0 18px 0 !important;
	font-size: 14px !important;
	color: var(--xclub-gray-text) !important;
	line-height: 1.8 !important;
	border: none !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.xclub-hero-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
}