/* SocialFriendsHub.org - New Zealand Social Gaming Platform */
/* Warm Cream/Coral Design with Left Sidebar Navigation */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables - Warm Coral/Cream/Teal Palette */
:root {
	--sfh-primary: #e07a5f;
	--sfh-primary-dark: #c96a52;
	--sfh-primary-light: #f0a896;
	--sfh-secondary: #3d5a80;
	--sfh-accent: #81b29a;
	--sfh-success: #81b29a;
	--sfh-warning: #f2cc8f;
	--sfh-error: #e36c5b;

	--sfh-cream: #faf9f6;
	--sfh-cream-dark: #f4f1ec;
	--sfh-warm-white: #fffefb;
	--sfh-charcoal: #2d3142;
	--sfh-slate: #4f5d75;
	--sfh-muted: #8d99ae;
	--sfh-light-gray: #e8e6e1;

	--sfh-shadow-soft: 0 2px 15px rgba(45, 49, 66, 0.06);
	--sfh-shadow-medium: 0 8px 30px rgba(45, 49, 66, 0.1);
	--sfh-shadow-strong: 0 15px 40px rgba(45, 49, 66, 0.15);

	--sfh-gradient-coral: linear-gradient(145deg, #e07a5f 0%, #f0a896 100%);
	--sfh-gradient-teal: linear-gradient(145deg, #3d5a80 0%, #5b7aa2 100%);
	--sfh-gradient-mint: linear-gradient(145deg, #81b29a 0%, #a5c9b8 100%);

	--sfh-radius-sm: 6px;
	--sfh-radius-md: 12px;
	--sfh-radius-lg: 20px;
	--sfh-radius-xl: 28px;

	--sfh-font-heading: 'Playfair Display', Georgia, serif;
	--sfh-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

	--sfh-transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
	--sfh-transition-fast: all 0.2s ease-out;

	--sfh-sidebar-width: 260px;
}

/* Reset and Base */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--sfh-font-body);
	line-height: 1.7;
	color: var(--sfh-charcoal);
	background: var(--sfh-cream);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Layout Structure - Sidebar + Content */
.sfh-layout {
	display: flex;
	min-height: 100vh;
}

/* Left Sidebar Navigation */
.sfh-sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sfh-sidebar-width);
	height: 100vh;
	background: var(--sfh-warm-white);
	border-right: 1px solid var(--sfh-light-gray);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: var(--sfh-transition);
}

.sfh-sidebar-header {
	padding: 2rem 1.5rem;
	border-bottom: 1px solid var(--sfh-light-gray);
}

.sfh-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--sfh-charcoal);
}

.sfh-logo-img {
	width: 44px;
	height: 44px;
	border-radius: var(--sfh-radius-md);
}

.sfh-logo-text {
	font-family: var(--sfh-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.sfh-logo-text span {
	display: block;
	font-size: 0.7rem;
	color: var(--sfh-muted);
	font-family: var(--sfh-font-body);
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Sidebar Navigation */
.sfh-nav {
	flex: 1;
	padding: 1.5rem 0;
	overflow-y: auto;
}

.sfh-nav-list {
	list-style: none;
}

.sfh-nav-item {
	margin-bottom: 0.25rem;
}

.sfh-nav-link {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem 1.5rem;
	color: var(--sfh-slate);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: var(--sfh-transition-fast);
	border-left: 3px solid transparent;
}

.sfh-nav-link:hover {
	background: var(--sfh-cream);
	color: var(--sfh-primary);
	border-left-color: var(--sfh-primary-light);
}

.sfh-nav-link.active {
	background: linear-gradient(90deg, rgba(224, 122, 95, 0.1) 0%, transparent 100%);
	color: var(--sfh-primary);
	border-left-color: var(--sfh-primary);
	font-weight: 600;
}

.sfh-nav-link i {
	width: 20px;
	text-align: center;
	font-size: 1rem;
}

/* Sidebar CTA */
.sfh-sidebar-cta {
	padding: 1.5rem;
	border-top: 1px solid var(--sfh-light-gray);
}

.sfh-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.875rem 1.25rem;
	background: var(--sfh-gradient-coral);
	color: white;
	text-decoration: none;
	border-radius: var(--sfh-radius-md);
	font-weight: 600;
	font-size: 0.9rem;
	transition: var(--sfh-transition-fast);
	box-shadow: var(--sfh-shadow-soft);
}

.sfh-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--sfh-shadow-medium);
}

/* Mobile Toggle Button */
.sfh-mobile-toggle {
	display: none;
	position: fixed;
	top: 1rem;
	left: 1rem;
	width: 48px;
	height: 48px;
	background: var(--sfh-warm-white);
	border: 1px solid var(--sfh-light-gray);
	border-radius: var(--sfh-radius-md);
	cursor: pointer;
	z-index: 1100;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	box-shadow: var(--sfh-shadow-medium);
}

.sfh-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--sfh-charcoal);
	border-radius: 2px;
	transition: var(--sfh-transition-fast);
}

.sfh-mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.sfh-mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.sfh-mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Content Area */
.sfh-main {
	flex: 1;
	margin-left: var(--sfh-sidebar-width);
	min-height: 100vh;
}

.sfh-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--sfh-font-heading);
	font-weight: 600;
	line-height: 1.3;
	color: var(--sfh-charcoal);
	margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.5rem; }
	h3 { font-size: 1.25rem; }
}

p {
	margin-bottom: 1rem;
	color: var(--sfh-slate);
}

a {
	color: var(--sfh-primary);
	text-decoration: none;
	transition: var(--sfh-transition-fast);
}

a:hover {
	color: var(--sfh-primary-dark);
}

ul, ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

li {
	margin-bottom: 0.5rem;
	color: var(--sfh-slate);
}

/* Sections */
.sfh-section {
	padding: 4rem 0;
}

.sfh-section-alt {
	background: var(--sfh-warm-white);
	border-top: 1px solid var(--sfh-light-gray);
	border-bottom: 1px solid var(--sfh-light-gray);
}

/* Hero Section */
.sfh-hero {
	background: var(--sfh-gradient-teal);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.sfh-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
	transform: rotate(-15deg);
}

.sfh-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.sfh-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	color: white;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.sfh-hero-title {
	font-size: 3rem;
	color: white;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sfh-hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255,255,255,0.9);
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

.sfh-hero-btn {
	display: inline-block;
	background: white;
	color: var(--sfh-secondary);
	padding: 1rem 2.5rem;
	border-radius: var(--sfh-radius-lg);
	font-weight: 600;
	font-size: 1rem;
	transition: var(--sfh-transition-fast);
	box-shadow: var(--sfh-shadow-medium);
}

.sfh-hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--sfh-shadow-strong);
	color: var(--sfh-primary);
}

@media (max-width: 768px) {
	.sfh-hero {
		padding: 3.5rem 0;
	}
	.sfh-hero-title {
		font-size: 2rem;
	}
}

/* Page Hero (smaller) */
.sfh-page-hero {
	background: var(--sfh-gradient-teal);
	padding: 3rem 0;
	text-align: center;
	position: relative;
}

.sfh-page-hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.sfh-page-hero-content {
	position: relative;
	z-index: 1;
}

.sfh-page-hero-icon {
	font-size: 3rem;
	color: white;
	margin-bottom: 0.75rem;
	opacity: 0.9;
}

.sfh-page-hero h1 {
	color: white;
	margin-bottom: 0.5rem;
}

.sfh-page-hero-subtitle {
	color: rgba(255,255,255,0.9);
	font-size: 1rem;
}

.sfh-page-hero-date {
	color: rgba(255,255,255,0.75);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Cards Grid */
.sfh-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.sfh-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.sfh-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
	.sfh-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.sfh-grid-2,
	.sfh-grid-3 {
		grid-template-columns: 1fr;
	}
}

/* Feature Cards */
.sfh-card {
	background: var(--sfh-warm-white);
	padding: 2rem;
	border-radius: var(--sfh-radius-lg);
	box-shadow: var(--sfh-shadow-soft);
	transition: var(--sfh-transition);
	border: 1px solid var(--sfh-light-gray);
}

.sfh-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sfh-shadow-medium);
	border-color: var(--sfh-primary-light);
}

.sfh-card-icon {
	width: 56px;
	height: 56px;
	background: var(--sfh-gradient-coral);
	border-radius: var(--sfh-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.sfh-card-icon i {
	font-size: 1.5rem;
	color: white;
}

.sfh-card-icon.teal {
	background: var(--sfh-gradient-teal);
}

.sfh-card-icon.mint {
	background: var(--sfh-gradient-mint);
}

.sfh-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.sfh-card p {
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* Game Cards */
.sfh-game-card {
	background: var(--sfh-warm-white);
	border-radius: var(--sfh-radius-lg);
	overflow: hidden;
	box-shadow: var(--sfh-shadow-soft);
	transition: var(--sfh-transition);
	border: 1px solid var(--sfh-light-gray);
	position: relative;
}

.sfh-game-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--sfh-shadow-strong);
}

.sfh-game-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: var(--sfh-gradient-coral);
	color: white;
	padding: 0.375rem 0.875rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 5;
}

.sfh-game-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: var(--sfh-cream);
}

.sfh-game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--sfh-transition);
}

.sfh-game-card:hover .sfh-game-image img {
	transform: scale(1.08);
}

.sfh-game-body {
	padding: 1.5rem;
}

.sfh-game-title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.sfh-game-desc {
	font-size: 0.9rem;
	color: var(--sfh-muted);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.sfh-game-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.sfh-game-meta span {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8rem;
	color: var(--sfh-muted);
}

.sfh-game-meta i {
	color: var(--sfh-primary);
}

.sfh-game-btn {
	width: 100%;
	padding: 0.875rem;
	background: var(--sfh-gradient-teal);
	color: white;
	border: none;
	border-radius: var(--sfh-radius-md);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--sfh-transition-fast);
}

.sfh-game-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Buttons */
.sfh-btn {
	display: inline-block;
	padding: 0.875rem 1.75rem;
	border-radius: var(--sfh-radius-md);
	font-weight: 600;
	font-size: 0.95rem;
	text-align: center;
	transition: var(--sfh-transition-fast);
	cursor: pointer;
	border: none;
	text-decoration: none;
}

.sfh-btn-primary {
	background: var(--sfh-gradient-coral);
	color: white;
	box-shadow: var(--sfh-shadow-soft);
}

.sfh-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--sfh-shadow-medium);
	color: white;
}

.sfh-btn-secondary {
	background: transparent;
	color: var(--sfh-primary);
	border: 2px solid var(--sfh-primary);
}

.sfh-btn-secondary:hover {
	background: var(--sfh-primary);
	color: white;
}

.sfh-btn-teal {
	background: var(--sfh-gradient-teal);
	color: white;
}

/* Alerts */
.sfh-alert {
	padding: 1.25rem 1.5rem;
	border-radius: var(--sfh-radius-md);
	margin: 1.5rem 0;
	border-left: 4px solid;
}

.sfh-alert-info {
	background: rgba(61, 90, 128, 0.08);
	border-color: var(--sfh-secondary);
}

.sfh-alert-success {
	background: rgba(129, 178, 154, 0.1);
	border-color: var(--sfh-success);
}

.sfh-alert-error {
	background: rgba(224, 122, 95, 0.1);
	border-color: var(--sfh-error);
}

.sfh-alert h4 {
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.sfh-alert p {
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* Forms */
.sfh-form-group {
	margin-bottom: 1.25rem;
}

.sfh-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--sfh-charcoal);
}

.sfh-form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--sfh-light-gray);
	border-radius: var(--sfh-radius-md);
	font-size: 0.95rem;
	font-family: inherit;
	transition: var(--sfh-transition-fast);
	background: var(--sfh-warm-white);
}

.sfh-form-control:focus {
	outline: none;
	border-color: var(--sfh-primary);
	box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.sfh-form-control.error {
	border-color: var(--sfh-error);
}

.sfh-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

@media (max-width: 640px) {
	.sfh-form-row {
		grid-template-columns: 1fr;
	}
}

/* Contact Layout */
.sfh-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
	margin-top: 2rem;
}

@media (max-width: 968px) {
	.sfh-contact-grid {
		grid-template-columns: 1fr;
	}
}

.sfh-contact-info,
.sfh-contact-form {
	background: var(--sfh-warm-white);
	padding: 2rem;
	border-radius: var(--sfh-radius-lg);
	border: 1px solid var(--sfh-light-gray);
}

.sfh-contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.sfh-contact-icon {
	width: 44px;
	height: 44px;
	background: var(--sfh-gradient-coral);
	border-radius: var(--sfh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sfh-contact-icon i {
	color: white;
	font-size: 1rem;
}

.sfh-contact-item h4 {
	margin-bottom: 0.25rem;
	font-size: 0.95rem;
}

.sfh-contact-item p {
	margin: 0;
	font-size: 0.9rem;
}

/* Footer */
.sfh-footer {
	background: var(--sfh-charcoal);
	color: var(--sfh-muted);
	padding: 3.5rem 0 1.5rem;
	margin-left: var(--sfh-sidebar-width);
}

.sfh-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-bottom: 2rem;
}

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

.sfh-footer-section h3 {
	color: white;
	font-size: 1rem;
	margin-bottom: 1rem;
	font-family: var(--sfh-font-body);
	font-weight: 600;
}

.sfh-footer-section p {
	color: var(--sfh-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.sfh-footer-section a {
	color: var(--sfh-muted);
}

.sfh-footer-section a:hover {
	color: var(--sfh-primary-light);
}

.sfh-disclaimer {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.sfh-disclaimer p {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.sfh-sponsor-notice {
	background: rgba(255,255,255,0.05);
	border-radius: var(--sfh-radius-md);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
}

.sfh-sponsor-notice p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
}

.sfh-sponsor-notice a {
	color: var(--sfh-primary-light);
}

.sfh-footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.sfh-footer-bottom p {
	font-size: 0.8rem;
	margin: 0;
	color: rgba(255,255,255,0.4);
}

/* Cookie Popup */
.sfh-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: var(--sfh-sidebar-width);
	right: 0;
	background: var(--sfh-warm-white);
	box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
	padding: 1.5rem 2rem;
	z-index: 9999;
	transition: var(--sfh-transition);
	border-top: 3px solid var(--sfh-primary);
}

.sfh-cookie-popup.show {
	bottom: 0;
}

.sfh-cookie-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.sfh-cookie-popup {
		left: 0;
	}
	.sfh-cookie-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.sfh-cookie-text h4 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.sfh-cookie-text p {
	margin: 0;
	font-size: 0.9rem;
}

.sfh-cookie-actions {
	flex-shrink: 0;
}

.sfh-cookie-accept {
	background: var(--sfh-gradient-coral);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--sfh-radius-md);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--sfh-transition-fast);
}

.sfh-cookie-accept:hover {
	transform: translateY(-1px);
	box-shadow: var(--sfh-shadow-soft);
}

/* Utility Classes */
.sfh-text-center {
	text-align: center;
}

.sfh-mb-3 {
	margin-bottom: 1.5rem;
}

.sfh-mb-4 {
	margin-bottom: 2rem;
}

.sfh-mt-4 {
	margin-top: 2rem;
}

/* Section Headers */
.sfh-section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.sfh-section-header h2 {
	margin-bottom: 0.75rem;
}

.sfh-section-header p {
	max-width: 600px;
	margin: 0 auto;
	color: var(--sfh-muted);
}

/* Legal Pages Content */
.sfh-legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.sfh-legal-section {
	margin-bottom: 2.5rem;
}

.sfh-legal-section h2 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.sfh-legal-section h2 i {
	color: var(--sfh-primary);
}

.sfh-legal-section h3 {
	margin-top: 1.25rem;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

/* CTA Sections */
.sfh-cta-box {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.sfh-cta-box h2 {
	margin-bottom: 0.75rem;
}

.sfh-cta-box p {
	margin-bottom: 1.5rem;
}

.sfh-cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Stats Display */
.sfh-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.sfh-stat {
	text-align: center;
}

.sfh-stat-number {
	display: block;
	font-size: 2.25rem;
	font-weight: 700;
	color: white;
	font-family: var(--sfh-font-heading);
}

.sfh-stat-label {
	display: block;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.8);
}

/* Cookie Management */
.sfh-cookie-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	background: var(--sfh-cream);
	border-radius: var(--sfh-radius-md);
	margin-bottom: 0.75rem;
	border: 1px solid var(--sfh-light-gray);
}

@media (max-width: 640px) {
	.sfh-cookie-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}

.sfh-cookie-option h3 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.sfh-cookie-option p {
	margin: 0;
	font-size: 0.875rem;
}

.sfh-cookie-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sfh-cookie-toggle input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.sfh-cookie-toggle label {
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
	.sfh-sidebar {
		transform: translateX(-100%);
	}

	.sfh-sidebar.active {
		transform: translateX(0);
	}

	.sfh-mobile-toggle {
		display: flex;
	}

	.sfh-main {
		margin-left: 0;
	}

	.sfh-footer {
		margin-left: 0;
	}

	.sfh-cookie-popup {
		left: 0;
	}

	.sfh-content {
		padding: 0 1.25rem;
		padding-top: 4.5rem;
	}
}

/* Overlay for mobile */
.sfh-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	z-index: 999;
}

.sfh-overlay.active {
	display: block;
}

/* Loading State */
.sfh-btn-loading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
}

/* Animations */
@keyframes sfhSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sfh-message {
	margin: 1.5rem 0;
	animation: sfhSlideIn 0.25s ease-out;
}

/* Print Styles */
@media print {
	.sfh-sidebar,
	.sfh-footer,
	.sfh-cookie-popup,
	.sfh-mobile-toggle {
		display: none !important;
	}
	.sfh-main {
		margin-left: 0 !important;
	}
}

