/**
 * Strefa Online - Custom Styles
 * Kolory bazowe: #877d71 i pasujące odcienie
 */

/* Reset margins for headings in Strefa Online sections */
.strefa-container h1,
.strefa-container h2,
.strefa-container h3,
.strefa-container h4,
.strefa-container h5,
.strefa-container h6,
.strefa-hero h1,
.strefa-hero h2,
.strefa-hero h3,
.strefa-switcher h1,
.strefa-switcher h2,
.strefa-switcher h3,
.strefa-kursy h1,
.strefa-kursy h2,
.strefa-kursy h3,
.strefa-zajecia h1,
.strefa-zajecia h2,
.strefa-zajecia h3,
.strefa-sklep h1,
.strefa-sklep h2,
.strefa-sklep h3,
.strefa-jak-to-dziala h1,
.strefa-jak-to-dziala h2,
.strefa-jak-to-dziala h3,
.strefa-misja h1,
.strefa-misja h2,
.strefa-misja h3,
.strefa-reviews h1,
.strefa-reviews h2,
.strefa-reviews h3 {
	margin-top: 0;
	margin-bottom: 0;
}

/* Strefa Online specific variables - extend base variables, but don't override footer variables */
.page-template-page-strefa-online-php :root,
body.page-template-page-strefa-online-php {
	/* Elegancka, naturalna kolorystyka inspirowana jogą - ciepłe, ziemiste tony */
	/* NOTE: --strefa-primary and --strefa-primary-dark are defined in style.css and used by footer */
	--strefa-primary-light: #A68B6F; /* Jaśniejszy brąz */
	--strefa-primary-lighter: #C4B5A0; /* Bardzo jasny beż */
	--strefa-primary-lightest: #E8E0D6; /* Kremowy beż */
	--strefa-accent-light: #E8C9A0; /* Jaśniejszy akcent */
	--strefa-accent-dark: #B8935F; /* Ciemniejszy akcent */
	--strefa-secondary: #9A8B7A; /* Szaro-brązowy */
	--strefa-text: #2C2416; /* Ciepły, ciemny brąz */
	--strefa-text-light: #6B5F52; /* Średni szaro-brąz */
	--strefa-text-lighter: #9A8F85; /* Jasny szaro-brąz */
	--strefa-bg: #FDFBF8; /* Ciepłe, kremowe białe */
	--strefa-bg-light: #FAF7F2; /* Bardzo jasny beż */
	--strefa-bg-lighter: #F5F1EA; /* Jasny beż */
	--strefa-border: #E5DDD3; /* Ciepłe, beżowe obramowania */
	--strefa-shadow: rgba(139, 115, 85, 0.08); /* Ciepłe cienie */
	--strefa-shadow-hover: rgba(139, 115, 85, 0.15);
	--strefa-shadow-card: rgba(139, 115, 85, 0.1);
}

/* Ensure footer uses consistent styles from style.css on all pages (except home) */
body:not(.home) .site-footer,
body.woocommerce-checkout .site-footer,
body.woocommerce-cart .site-footer,
body.woocommerce .site-footer,
body.page-template-page-strefa-online-php .site-footer {
	background: var(--strefa-primary, #8B7355) !important;
	color: #ffffff !important;
	margin-top: 4rem !important;
}

body:not(.home) .site-footer-bottom,
body.woocommerce-checkout .site-footer-bottom,
body.woocommerce-cart .site-footer-bottom,
body.woocommerce .site-footer-bottom,
body.page-template-page-strefa-online-php .site-footer-bottom {
	background: var(--strefa-primary-dark, #6B5A47) !important;
	padding: 1rem 0 !important;
	border-top: 0.0625rem solid rgba(255, 255, 255, 0.1) !important;
}

/* Ensure footer container and columns are consistent */
body:not(.home) .footer-container,
body.woocommerce-checkout .footer-container,
body.woocommerce-cart .footer-container,
body.woocommerce .footer-container,
body.page-template-page-strefa-online-php .footer-container {
	max-width: 100rem !important;
	margin: 0 auto !important;
	padding: 0 1.5rem !important;
}

body:not(.home) .site-footer-widgets,
body.woocommerce-checkout .site-footer-widgets,
body.woocommerce-cart .site-footer-widgets,
body.woocommerce .site-footer-widgets,
body.page-template-page-strefa-online-php .site-footer-widgets {
	padding: 4rem 0 2rem !important;
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15) !important;
}

body:not(.home) .footer-columns,
body.woocommerce-checkout .footer-columns,
body.woocommerce-cart .footer-columns,
body.woocommerce .footer-columns,
body.page-template-page-strefa-online-php .footer-columns {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)) !important;
	gap: 3rem !important;
	align-items: start !important;
}

/* Footer should use base styles from style.css - no overrides needed */

/* Container */
.strefa-container {
	max-width: 75rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Hero Section */
.strefa-hero {
	position: relative;
	padding: 7.5rem 1.5rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--strefa-bg);
}

.strefa-hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?q=80&w=2000&auto=format&fit=crop');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transform: scale(1.1);
	transition: transform 0.1s ease-out;
	z-index: 1;
}

.strefa-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(253, 251, 248, 0.85) 0%, rgba(250, 247, 242, 0.75) 50%, rgba(253, 251, 248, 0.85) 100%);
}

.strefa-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(253, 251, 248, 0.4) 0%, rgba(250, 247, 242, 0.6) 100%);
	z-index: 2;
	pointer-events: none;
}

.strefa-hero-decor {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	z-index: 3;
	pointer-events: none;
	animation: float 20s ease-in-out infinite;
}

.strefa-hero-decor::before,
.strefa-hero-decor::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	background: var(--strefa-accent);
	filter: blur(80px);
}

.strefa-hero-decor::before {
	top: 5rem;
	left: 2.5rem;
	width: 18rem;
	height: 18rem;
	animation: pulse 8s ease-in-out infinite;
}

.strefa-hero-decor::after {
	bottom: 5rem;
	right: 2.5rem;
	width: 24rem;
	height: 24rem;
	animation: pulse 12s ease-in-out infinite;
	animation-delay: -4s;
}

.strefa-hero-content {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 10;
}

.strefa-hero-badge {
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.375rem 0.75rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(0.625rem);
	border-radius: 0.375rem;
	box-shadow: 0 0.25rem 0.9375rem var(--strefa-shadow);
}

.strefa-hero-badge-text {
	color: var(--strefa-primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.strefa-hero-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 4.5rem;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 2rem;
	padding: 0 1.25rem;
	line-height: 1.1;
	letter-spacing: 0.02em;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.strefa-hero-title-gradient {
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-accent-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.strefa-hero-description {
	font-family: "Lato", sans-serif;
	font-size: 1.25rem;
	color: var(--strefa-text-light);
	margin-bottom: 3.5rem;
	padding: 0 1.25rem;
	line-height: 1.6;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.strefa-hero-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 5rem;
	flex-wrap: wrap;
}

.strefa-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	color: var(--strefa-text-light);
	padding-top: 2.5rem;
}

.strefa-stat-item {
	text-align: center;
}

.strefa-stat-number {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--strefa-primary);
	margin-bottom: 0.5rem;
}

.strefa-stat-label {
	font-size: 0.875rem;
}

.strefa-stat-divider {
	width: 0.0625rem;
	min-height: 3rem;
	background: var(--strefa-border);
}

/* Buttons */
.strefa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.02em;
}

.strefa-btn-primary {
	background: var(--strefa-primary);
	color: #ffffff;
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow);
}

.strefa-btn-primary:hover {
	background: var(--strefa-primary-dark);
	transform: translateY(-0.0625rem);
	box-shadow: 0 0.25rem 0.75rem var(--strefa-shadow);
}

.strefa-btn-secondary {
	background: #ffffff;
	color: var(--strefa-primary);
	border: 0.125rem solid var(--strefa-primary);
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow);
}

.strefa-btn-secondary:hover {
	background: var(--strefa-primary);
	color: #ffffff;
	transform: translateY(-0.0625rem);
	box-shadow: 0 0.25rem 0.75rem var(--strefa-shadow);
}

.strefa-btn-outline {
	background: transparent;
	color: var(--strefa-primary);
	border: 0.125rem solid var(--strefa-primary);
}

.strefa-btn-outline:hover {
	background: var(--strefa-primary);
	color: #ffffff;
	transform: translateY(-0.125rem);
}

.strefa-btn-white {
	background: #ffffff;
	color: var(--strefa-primary);
	box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.strefa-btn-white:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.2);
}

.strefa-btn-full {
	width: 100%;
	margin-top: auto;
}

.strefa-btn-large {
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
}

.strefa-btn-arrow {
	transition: transform 0.3s ease;
}

.strefa-btn:hover .strefa-btn-arrow {
	transform: translateX(0.25rem);
}

/* Switcher Section */
.strefa-switcher {
	padding: 5rem 0;
	background: linear-gradient(to bottom, #ffffff 0%, var(--strefa-bg-light) 100%);
}

.strefa-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.strefa-section-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 3rem;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--strefa-text);
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.strefa-section-title-large {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 3.75rem;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: var(--strefa-text);
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.strefa-section-subtitle {
	font-family: "Lato", sans-serif;
	font-size: 1.125rem;
	color: var(--strefa-text-light);
	max-width: 48rem;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 300;
}

.strefa-badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
	background: rgba(139, 115, 85, 0.12);
}

.strefa-badge-text {
	color: var(--strefa-primary);
	font-weight: 600;
}

.strefa-switcher-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 80rem;
	margin: 0 auto;
}

.strefa-switcher-card {
	position: relative;
	background: #ffffff;
	border-radius: 1rem;
	padding: 2.5rem;
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow-card);
	border: 0.0625rem solid var(--strefa-border);
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.strefa-switcher-card:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.25rem 1rem var(--strefa-shadow-card);
	border-color: var(--strefa-primary-lightest);
}

.strefa-switcher-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(139, 115, 85, 0.06) 0%, rgba(212, 165, 116, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.strefa-switcher-card:hover .strefa-switcher-card-bg {
	opacity: 1;
}

.strefa-switcher-card-content {
	position: relative;
	z-index: 10;
}

.strefa-switcher-icon {
	width: 5rem;
	height: 5rem;
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-accent-dark) 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: transform 0.5s ease;
}

.strefa-switcher-card:hover .strefa-switcher-icon {
	transform: scale(1.1);
}

.strefa-switcher-icon i {
	color: #ffffff;
	font-size: 2rem;
}

.strefa-switcher-icon-alt {
	background: linear-gradient(135deg, var(--strefa-accent-light) 0%, var(--strefa-primary-dark) 100%);
}

.strefa-switcher-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.strefa-switcher-card:hover .strefa-switcher-title {
	color: var(--strefa-primary);
}

.strefa-switcher-text {
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	color: var(--strefa-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.strefa-switcher-list {
	list-style: none;
	margin: 0 0 2rem 0;
	padding: 0;
}

.strefa-switcher-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--strefa-text);
}

.strefa-switcher-list i {
	color: var(--strefa-primary);
}

/* Kursy Section */
.strefa-kursy {
	padding: 6rem 0;
	background: #ffffff;
}

.strefa-courses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.strefa-course-card {
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow-card);
	border: 0.0625rem solid var(--strefa-border);
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.strefa-course-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.5rem 1.875rem var(--strefa-shadow-hover);
}

.strefa-course-image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(139, 115, 85, 0.12) 0%, rgba(212, 165, 116, 0.06) 100%);
	position: relative;
}

.strefa-course-image img {
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.strefa-course-card:hover .strefa-course-image img {
	transform: scale(1.1);
}

.strefa-course-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.375rem 0.75rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(0.625rem);
	border-radius: 0.375rem;
	color: var(--strefa-primary);
	font-weight: 600;
	font-size: 0.875rem;
}

.strefa-course-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.strefa-course-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	color: var(--strefa-text-light);
}

.strefa-course-meta i {
	color: var(--strefa-primary);
	margin-right: 0.25rem;
}

.strefa-meta-separator {
	margin: 0 0.5rem;
}

.strefa-course-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.strefa-course-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.strefa-course-title a:hover {
	color: var(--strefa-primary);
}

.strefa-course-image a {
	display: block;
	text-decoration: none;
}

.strefa-course-price {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--strefa-primary);
}

.strefa-course-price .woocommerce-Price-amount {
	color: var(--strefa-primary);
}

.strefa-no-courses {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem;
	color: var(--strefa-text-light);
}

.strefa-course-card:hover .strefa-course-title {
	color: var(--strefa-primary);
}

.strefa-course-description {
	font-family: "Lato", sans-serif;
	color: var(--strefa-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 300;
	font-size: 0.9375rem;
	flex: 1;
}

.strefa-course-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	margin-top: auto;
}

.strefa-course-participants {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--strefa-text-light);
}

.strefa-avatars {
	display: flex;
	gap: -0.5rem;
}

.strefa-avatars img {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: 0.125rem solid #ffffff;
	margin-left: -0.5rem;
}

.strefa-avatars img:first-child {
	margin-left: 0;
}

.strefa-course-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: #fbbf24;
	font-weight: 600;
}

.strefa-section-footer {
	text-align: center;
}

/* Zajęcia Section */
.strefa-zajecia {
	padding: 6rem 0;
	background: linear-gradient(135deg, rgba(139, 115, 85, 0.04) 0%, var(--strefa-bg-light) 100%);
}

.strefa-zajecia-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.strefa-zajecia-text {
	font-size: 1.25rem;
	color: var(--strefa-text-light);
	line-height: 1.4;
	margin-bottom: 2.5rem;
}

.strefa-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.strefa-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.strefa-feature-icon {
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-accent-dark) 100%);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.strefa-feature-icon i {
	color: #ffffff;
	font-size: 1.25rem;
}

.strefa-feature-icon-alt {
	background: linear-gradient(135deg, var(--strefa-primary-dark) 0%, var(--strefa-accent) 100%);
}

.strefa-feature-icon-alt2 {
	background: linear-gradient(135deg, var(--strefa-accent-light) 0%, var(--strefa-primary) 100%);
}

.strefa-feature-icon-alt3 {
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-accent-light) 100%);
}

.strefa-feature-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.25rem;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0.5rem;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.strefa-feature-text {
	font-family: "Lato", sans-serif;
	color: var(--strefa-text-light);
	line-height: 1.6;
	font-weight: 300;
	font-size: 0.9375rem;
}

.strefa-zajecia-visual {
	position: relative;
}

.strefa-visual-decor {
	position: absolute;
	border-radius: 24px;
	filter: blur(40px);
	opacity: 0.2;
}

.strefa-visual-decor-1 {
	top: -1.5rem;
	right: -1.5rem;
	width: 18rem;
	height: 18rem;
	background: var(--strefa-primary);
	z-index: -1;
}

.strefa-visual-decor-2 {
	bottom: -1.5rem;
	left: -1.5rem;
	width: 18rem;
	height: 18rem;
	background: var(--strefa-primary-light);
	z-index: -1;
}

.strefa-visual-card {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 0.5rem 1.875rem var(--strefa-shadow-hover);
}

.strefa-visual-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.strefa-visual-image img {
	width: 100%;
	object-fit: cover;
}

.strefa-visual-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	padding: 2rem;
	color: #ffffff;
}

.strefa-live-indicator {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
}

.strefa-live-dot {
	width: 0.75rem;
	height: 0.75rem;
	background: #ef4444;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.strefa-visual-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0.25rem;
}

.strefa-visual-subtitle {
	opacity: 0.8;
	margin-bottom: 1rem;
}

.strefa-visual-participants {
	text-align: right;
}

.strefa-visual-number {
	font-size: 1.875rem;
	font-weight: 700;
}

.strefa-visual-label {
	font-size: 0.875rem;
	opacity: 0.8;
}

.strefa-upcoming-classes {
	margin-top: 5rem;
	padding: 0;
}

.strefa-upcoming-classes .strefa-container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.strefa-upcoming-title {
	font-size: 1.875rem;
	font-weight: 700;
	text-align: center;
	margin-top: 0;
	margin-bottom: 3rem !important;
}

.strefa-classes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.strefa-class-card {
	background: #ffffff;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow-card);
	border: 0.0625rem solid var(--strefa-border);
	transition: all 0.3s ease;
}

.strefa-class-card:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.25rem 1rem var(--strefa-shadow-card);
	border-color: var(--strefa-primary-lightest);
}

.strefa-class-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.strefa-class-day {
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
	background: rgba(139, 115, 85, 0.12);
	color: var(--strefa-primary);
	font-weight: 600;
	font-size: 0.875rem;
}

.strefa-class-time {
	text-align: right;
}

.strefa-class-time-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--strefa-primary);
}

.strefa-class-time-label {
	font-size: 0.875rem;
	color: var(--strefa-text-light);
}

.strefa-class-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.25rem;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 1rem;
	letter-spacing: 0.01em;
	line-height: 1.3;
	color: var(--strefa-text);
}

.strefa-class-instructor {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.strefa-class-instructor img {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
}

.strefa-class-instructor-name {
	font-weight: 600;
}

.strefa-class-instructor-role {
	font-size: 0.875rem;
	color: var(--strefa-text-light);
}

.strefa-class-description {
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	color: var(--strefa-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

/* Sklep Section */
.strefa-sklep {
	padding: 6rem 0;
	background: #ffffff;
}

.strefa-products-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
}

.strefa-filter-btn {
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
	font-weight: 600;
	border: none;
	background: var(--strefa-bg-light);
	color: var(--strefa-text);
	cursor: pointer;
	transition: all 0.3s ease;
}

.strefa-filter-btn:hover {
	background: var(--strefa-primary-lightest);
	color: var(--strefa-primary);
}

.strefa-filter-btn-active {
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-accent-dark) 100%);
	color: #ffffff;
	cursor: default;
}

.strefa-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.strefa-product-card {
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 0.125rem 0.5rem var(--strefa-shadow-card);
	border: 0.0625rem solid var(--strefa-border);
	overflow: hidden;
	transition: all 0.3s ease;
}

.strefa-product-card:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.25rem 1rem var(--strefa-shadow-card);
	border-color: var(--strefa-primary-lightest);
}

.strefa-product-image {


	background: linear-gradient(135deg, rgba(139, 115, 85, 0.06) 0%, rgba(212, 165, 116, 0.03) 100%);
	position: relative;
}

.strefa-product-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.strefa-product-card:hover .strefa-product-image img {
	transform: scale(1.1);
}

.strefa-product-pdf {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.375rem 0.75rem;
	background: #ffffff;
	border-radius: 0.375rem;
	box-shadow: 0 0.25rem 0.9375rem var(--strefa-shadow);
	color: var(--strefa-primary);
	font-weight: 700;
	font-size: 0.875rem;
}

.strefa-product-content {
	padding: 1.5rem;
}

.strefa-product-category {
	font-size: 0.875rem;
	color: var(--strefa-text-light);
	margin-bottom: 0.5rem;
}

.strefa-product-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.strefa-product-card:hover .strefa-product-title {
	color: var(--strefa-primary);
}

.strefa-product-description {
	font-size: 0.875rem;
	color: var(--strefa-text-light);
	line-height: 1.4;
	margin-bottom: 1rem;
}

.strefa-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.strefa-product-price {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--strefa-primary);
}

.strefa-product-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: #fbbf24;
	font-weight: 600;
}

.strefa-product-reviews {
	color: var(--strefa-text-light);
	margin-left: 0.25rem;
}

/* Jak To Działa */
.strefa-how-it-works {
	padding: 96px 0;
	background: linear-gradient(135deg, var(--strefa-bg-light) 0%, #ffffff 100%);
}

.strefa-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	max-width: 1152px;
	margin: 0 auto 64px;
}

.strefa-step-item {
	position: relative;
	text-align: center;
}

.strefa-step-icon-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 32px;
}

.strefa-step-icon {
	width: 128px;
	height: 128px;
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 8px 30px var(--strefa-shadow-hover);
}

.strefa-step-icon i {
	color: #ffffff;
	font-size: 3rem;
}

.strefa-step-icon-alt {
	background: linear-gradient(135deg, var(--strefa-primary-dark) 0%, var(--strefa-accent) 100%);
}

.strefa-step-icon-alt2 {
	background: linear-gradient(135deg, var(--strefa-accent-light) 0%, var(--strefa-primary) 100%);
}

.strefa-step-number {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 64px;
	height: 64px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 15px var(--strefa-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--strefa-primary);
}

.strefa-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 16px;
}

.strefa-step-text {
	color: var(--strefa-text-light);
	line-height: 1.4;
}

.strefa-cta-box {
	display: inline-block;
	background: linear-gradient(135deg, rgba(139, 115, 85, 0.06) 0%, rgba(212, 165, 116, 0.03) 100%);
	border-radius: 24px;
	padding: 48px;
	max-width: 896px;
	margin: 64px auto 0;
	text-align: center;
}

.strefa-cta-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 16px;
}

.strefa-cta-text {
	font-size: 1.25rem;
	color: var(--strefa-text-light);
	margin-bottom: 32px;
}

.strefa-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}

/* Misja Section */
.strefa-misja {
	padding: 96px 0;
	background: #ffffff;
}

.strefa-misja-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 64px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

.strefa-misja-visual {
	position: relative;
}

.strefa-misja-decor {
	position: absolute;
	width: 256px;
	height: 256px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.2;
}

.strefa-misja-decor-1 {
	top: -32px;
	left: -32px;
	background: var(--strefa-primary);
	z-index: -1;
}

.strefa-misja-decor-2 {
	bottom: -32px;
	right: -32px;
	background: var(--strefa-primary-light);
	z-index: -1;
}

.strefa-misja-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 30px var(--strefa-shadow-hover);
	position: relative;
}

.strefa-misja-image img {
	width: 100%;
	object-fit: cover;
}

.strefa-misja-text {
	font-size: 1.125rem;
	color: var(--strefa-text-light);
	line-height: 1.4;
	margin-bottom: 40px;
}

.strefa-misja-text p {
	margin-bottom: 24px;
}

.strefa-misja-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 40px;
}

.strefa-misja-stat {
	text-align: center;
	padding: 24px;
	background: linear-gradient(135deg, rgba(139, 115, 85, 0.06) 0%, rgba(212, 165, 116, 0.03) 100%);
	border-radius: 16px;
}

.strefa-misja-stat-number {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--strefa-primary);
	margin-bottom: 8px;
}

.strefa-misja-stat-label {
	color: var(--strefa-text-light);
}

/* Opinie Section */
.strefa-opinie {
	padding: 96px 0;
	background: linear-gradient(135deg, var(--strefa-bg-light) 0%, #ffffff 100%);
}

.strefa-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 48px;
}

.strefa-review-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 20px var(--strefa-shadow);
	transition: box-shadow 0.3s ease;
}

.strefa-review-card:hover {
	box-shadow: 0 8px 30px var(--strefa-shadow-hover);
}

.strefa-review-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.strefa-review-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
}

.strefa-review-name {
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 4px;
}

.strefa-review-stars {
	display: flex;
	gap: 4px;
	color: #fbbf24;
}

.strefa-review-text {
	color: var(--strefa-text-light);
	line-height: 1.4;
	margin-bottom: 16px;
}

.strefa-review-course {
	font-size: 0.875rem;
	color: var(--strefa-text-lighter);
}

.strefa-reviews-cta {
	background: linear-gradient(135deg, var(--strefa-primary) 0%, var(--strefa-primary-dark) 100%);
	border-radius: 24px;
	padding: 48px;
	text-align: center;
	color: #ffffff;
}

.strefa-reviews-cta-title {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 16px;
}

.strefa-reviews-cta-subtitle {
	font-size: 1.25rem;
	opacity: 0.9;
	margin-bottom: 32px;
}

.strefa-reviews-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
}

.strefa-reviews-stat {
	text-align: center;
}

.strefa-reviews-stat-number {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.strefa-reviews-stat-label {
	font-size: 0.875rem;
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
	.strefa-courses-grid,
	.strefa-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.strefa-switcher-grid,
	.strefa-zajecia-grid,
	.strefa-misja-grid {
		grid-template-columns: 1fr;
	}

	.strefa-steps-grid {
		grid-template-columns: 1fr;
	}

	.strefa-classes-grid,
	.strefa-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Hero Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(2rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) translateX(0);
	}
	25% {
		transform: translateY(-1rem) translateX(0.5rem);
	}
	50% {
		transform: translateY(-0.5rem) translateX(-0.5rem);
	}
	75% {
		transform: translateY(-1.5rem) translateX(0.25rem);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 0.15;
		transform: scale(1);
	}
	50% {
		opacity: 0.25;
		transform: scale(1.1);
	}
}

/* Parallax Effect */
@media (prefers-reduced-motion: no-preference) {
	.strefa-hero-bg[data-parallax="true"] {
		will-change: transform;
	}
}

@media (max-width: 1024px) {
	.strefa-hero-bg {
		background-attachment: scroll;
		transform: scale(1.05) !important;
	}
}

@media (max-width: 768px) {
	.strefa-hero {
		padding: 80px 0;
	}

	.strefa-hero-title {
		font-size: 3rem;
		padding: 0 10px;
	}

	.strefa-hero-description {
		font-size: 1.125rem;
		padding: 0 10px;
	}

	.strefa-hero-buttons {
		flex-direction: column;
		width: 100%;
		padding: 0 20px;
	}

	.strefa-hero-buttons .strefa-btn {
		width: 100%;
	}

	.strefa-hero-stats {
		flex-direction: column;
		gap: 24px;
		padding-top: 32px;
	}

	.strefa-stat-divider {
		display: none;
	}

	.strefa-section-title-large {
		font-size: 2.5rem;
	}

	.strefa-courses-grid,
	.strefa-products-grid,
	.strefa-classes-grid,
	.strefa-reviews-grid {
		grid-template-columns: 1fr;
	}

	.strefa-products-filters {
		flex-direction: column;
		align-items: stretch;
	}

	.strefa-filter-btn {
		width: 100%;
	}

	.strefa-misja-stats {
		grid-template-columns: 1fr;
	}

	.strefa-cta-buttons {
		flex-direction: column;
	}
}

