/* ===================================== */
/* Myrobalan B2B Webshop - main_v2.css */
/* Authentication Pages                */
/* ===================================== */

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #1A1A1A;
	background: #F8F9FA;
}

/* Remove default checkbox/input focus outline */
input[type="checkbox"]:focus {
	outline: none;
}

/* Add custom focus outline only when navigating with keyboard */
input[type="checkbox"]:focus-visible {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
	border-radius: 2px;
}

/* ===================================== */
/* Authentication Pages                */
/* ===================================== */

.auth-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #F8F9FA;
}

/* Header */
.main-header {
	background: #2E2B22;
	color: white;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.main-header .logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
}

.logo-img {
	height: 40px;
	width: auto;
	display: block;
}

.logo-text {
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Hero Background Section */
.auth-hero {
	flex: 1;
	background-image: url('../img/webshop_partner_login-desktop.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	position: relative;
	min-height: calc(100vh - 60px);
}

/* Dark overlay for better text contrast */
.auth-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

/* Authentication Card */
.auth-card {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 1rem;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-card-wide {
	max-width: 500px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

/* Scrollbar styling for auth card */
.auth-card-wide::-webkit-scrollbar {
	width: 8px;
}

.auth-card-wide::-webkit-scrollbar-track {
	background: #F8F9FA;
	border-radius: 4px;
}

.auth-card-wide::-webkit-scrollbar-thumb {
	background: #6FE8DE;
	border-radius: 4px;
}

.auth-card-wide::-webkit-scrollbar-thumb:hover {
	background: #4AC4B0;
}

/* Authentication Title */
.auth-title {
	text-align: center;
	color: #2E2B22;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.3;
}

/* Form Sections */
.form-section {
	margin-bottom: 2rem;
}

.form-section-title {
	font-size: 1rem;
	font-weight: 600;
	color: #2E2B22;
	margin-bottom: 1rem;
	border-bottom: 2px solid #6FE8DE;
	padding-bottom: 0.5rem;
}

/* Form Groups */
.form-group {
	margin-bottom: 1.25rem;
}

.form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 0;
}

.form-row .form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #2E2B22;
}

/* Form Controls */
.form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	border: 1px solid #E5E7EB;
	border-radius: 0.5rem;
	background: white;
	transition: all 0.2s;
}

.form-control:focus {
	outline: none;
	border-color: #6FE8DE;
	box-shadow: 0 0 0 3px rgba(93, 213, 193, 0.1);
}

.form-control::placeholder {
	color: #9CA3AF;
}

.form-text {
	display: block;
	margin-top: 0.375rem;
	font-size: 0.75rem;
	color: #6C757D;
}

/* Password Input Wrapper */
.password-input-wrapper {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #6C757D;
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.password-toggle:hover,
.password-toggle.active {
	color: #2E2B22;
}

.password-input-wrapper .form-control {
	padding-right: 3rem;
}

/* Password Strength Indicator */
.password-strength {
	margin-top: 0.5rem;
}

.password-strength-bar {
	height: 4px;
	background: #E5E7EB;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 0.375rem;
}

.password-strength-fill {
	height: 100%;
	width: 0;
	transition: all 0.3s;
	border-radius: 2px;
}

.password-strength-text {
	font-size: 0.75rem;
	font-weight: 500;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.btn:focus {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
}

.btn-primary {
	background: #2E2B22;
	color: #FFFFFF;
}

.btn-primary:hover {
	background: #2F3530;
}

.btn-primary:active {
	background: #242926;
}

.btn-secondary {
	background: transparent;
	color: #2E2B22;
	border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
	background: #F8F9FA;
	border-color: #2E2B22;
}

.btn-full-width {
	width: 100%;
}

/* Auth Divider */
.auth-divider {
	text-align: center;
	margin: 1.5rem 0;
	position: relative;
	color: #6C757D;
	font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: calc(50% - 2rem);
	height: 1px;
	background: #E5E7EB;
}

.auth-divider::before {
	left: 0;
}

.auth-divider::after {
	right: 0;
}

.auth-divider span {
	position: relative;
	background: rgba(255, 255, 255, 0.95);
	padding: 0 1rem;
}

/* Auth Links */
.auth-link {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: #6C757D;
}

.auth-link a {
	color: #6FE8DE;
	text-decoration: none;
	font-weight: 500;
	margin-left: 0.25rem;
}

.auth-link a:hover {
	text-decoration: underline;
}

.link-primary {
	color: #6FE8DE;
	text-decoration: none;
}

.link-primary:hover {
	text-decoration: underline;
}

/* Toggle Switch */
.toggle-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	margin-bottom: 1.5rem;
}

.toggle-switch input[type="checkbox"] {
	appearance: none;
	width: 3rem;
	height: 1.5rem;
	background: #E5E7EB;
	border-radius: 1rem;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

.toggle-switch input[type="checkbox"]:before {
	content: '';
	position: absolute;
	width: 1.25rem;
	height: 1.25rem;
	background: white;
	border-radius: 50%;
	top: 0.125rem;
	left: 0.125rem;
	transition: all 0.3s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked {
	background: #6FE8DE;
}

.toggle-switch input[type="checkbox"]:checked:before {
	left: 1.625rem;
}

.toggle-switch span {
	font-size: 0.875rem;
	color: #2E2B22;
	user-select: none;
}

/* Checkboxes */
.checkbox-control {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
}

.checkbox-control input[type="checkbox"] {
	width: 1.125rem;
	height: 1.125rem;
	margin-top: 0.125rem;
	cursor: pointer;
	accent-color: #6FE8DE;
	flex-shrink: 0;
}

.checkbox-control input[type="checkbox"]:focus {
	outline: none;
}

.checkbox-control input[type="checkbox"]:focus-visible {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
	border-radius: 2px;
}

.checkbox-control span {
	font-size: 0.875rem;
	color: #2E2B22;
}

/* Alerts */
.alert-error {
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	background: #FEE2E2;
	color: #991B1B;
	border: 1px solid #FCA5A5;
}

.alert-success {
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	background: #D4EDDA;
	color: #155724;
	border: 1px solid #C3E6CB;
}

.mt-2 {
	margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.auth-hero {
		padding: 1rem;
	}

	.auth-card {
		padding: 1.5rem;
	}

	.auth-title {
		font-size: 1.5rem;
	}

	.main-header {
		padding: 0.75rem 1rem;
	}

	.logo-img {
		height: 32px;
	}

	.logo-text {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.auth-card {
		padding: 1.25rem;
		max-width: 100%;
	}

	.auth-card-wide {
		max-height: calc(100vh - 100px);
	}

	.auth-title {
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
	}

	.form-section-title {
		font-size: 0.938rem;
	}

	.btn {
		padding: 0.625rem 1rem;
	}

	.logo-img {
		height: 28px;
	}
}

/* Accessibility */
*:focus {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
}

/* Loading State */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ===================================== */
/* Webshop Product Catalog            */
/* ===================================== */

.webshop-body {
	background: #FFFFFF;
	padding-top: 112px;
}

/* User Info in Header */
.user-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: white;
}

.user-info span {
	font-size: 0.875rem;
	font-weight: 500;
}

.notification-badge {
	position: relative;
	color: white;
	text-decoration: none;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	transition: opacity 0.2s;
}

.notification-badge:hover {
	opacity: 0.8;
}

.notification-badge .count {
	position: absolute;
	top: 0;
	right: 0;
	background: #F9F0A1;
	color: #2E2B22;
	font-size: 0.625rem;
	font-weight: 700;
	min-width: 1.125rem;
	height: 1.125rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.25rem;
}

/* Cart Empty State */
.cart-badge.cart-empty {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.cart-badge.cart-empty:hover {
	opacity: 0.4;
}

.hamburger-menu {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
}

/* Info Banner */
.info-banner {
	background: #6FE8DE;
	color: #000;
	padding: 0.5rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 0.813rem;
	font-weight: 500;
	flex-wrap: wrap;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	z-index: 999;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.info-banner:hover {
	background: #5DD5C1;
}

.info-banner-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.info-banner-item svg {
	flex-shrink: 0;
}

.info-banner-item strong {
	font-weight: 700;
}

/* Content Notice */
.content-notice {
	text-align: center;
	padding: 0.75rem 1.5rem;
	background: #F8F9FA;
	color: #6C757D;
	font-size: 0.875rem;
}

.content-notice strong {
	color: #2E2B22;
	font-weight: 600;
}

/* Webshop Container */
.webshop-container {
	display: flex;
	max-width: 1400px;
	margin: 0 auto;
	gap: 2rem;
	padding: 2rem 1.5rem;
}

/* Sidebar Filters */
.webshop-sidebar {
	width: 280px;
	flex-shrink: 0;
	background: #F8F9FA;
	border-radius: 0.75rem;
	padding: 1.5rem;
	height: fit-content;
	position: sticky;
	top: 128px;
}

.sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.sidebar-header h2 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #2E2B22;
}

.btn-text {
	background: none;
	border: none;
	color: #6FE8DE;
	font-size: 0.813rem;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
}

.btn-text:hover {
	color: #4AC4B0;
}

/* Filter Sections */
.filter-section {
	margin-bottom: 1rem;
	border-bottom: 1px solid #E5E7EB;
	padding-bottom: 1rem;
}

.filter-section:last-child {
	border-bottom: none;
}

.filter-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	color: #2E2B22;
	text-align: left;
}

.filter-header svg.chevron {
	transition: transform 0.2s;
}

.filter-header:hover {
	color: #2F3530;
}

.filter-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.filter-content.active {
	max-height: 500px;
}

.filter-header svg.chevron.rotate {
	transform: rotate(180deg);
}

.filter-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	cursor: pointer;
	font-size: 0.813rem;
	color: #2E2B22;
}

.filter-option:hover {
	color: #2F3530;
}

.filter-option-child {
	padding-left: 1.5rem;
}

.filter-checkbox {
	width: 1rem;
	height: 1rem;
	cursor: pointer;
	accent-color: #6FE8DE;
	flex-shrink: 0;
}

.filter-checkbox:focus {
	outline: none;
}

.filter-checkbox:focus-visible {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Main Product Area */
.webshop-main {
	flex: 1;
	min-width: 0;
}

/* Toolbar */
.webshop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.search-bar {
	position: relative;
	flex: 1;
	max-width: 400px;
}

.search-input {
	width: 100%;
	padding: 0.625rem 2.5rem 0.625rem 1rem;
	border: 1px solid #E5E7EB;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	background: white;
}

.search-input:focus {
	outline: none;
	border-color: #6FE8DE;
	box-shadow: 0 0 0 3px rgba(93, 213, 193, 0.1);
}

.search-icon {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: #6C757D;
	pointer-events: none;
}

.form-select {
	padding: 0.625rem 2.5rem 0.625rem 1rem;
	border: 1px solid #E5E7EB;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	background: white;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233E4641' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
}

.form-select:focus {
	outline: none;
	border-color: #6FE8DE;
	box-shadow: 0 0 0 3px rgba(93, 213, 193, 0.1);
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
	transition: opacity 0.2s ease;
}

.product-grid.refreshing {
	opacity: 0.6;
	pointer-events: none;
}

/* Product Card */
.product-card {
	background: white;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.2s;
	position: relative;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.product-card .badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
	display: inline-block;
	padding: 0.25rem 0.625rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

.badge-new {
	background: #6FE8DE;
	color: #000;
}

.badge-popular {
	background: #6FE8DE;
	color: #000;
}

.badge-sale {
	background: #FF6B6B;
	color: #FFF;
}

.stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 0.25rem;
	margin-bottom: 0.5rem;
}

.stock-badge svg {
	flex-shrink: 0;
}

.stock-badge.in-stock {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.stock-badge.out-of-stock {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.product-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	background: white;
	padding: 1rem;
}

.product-info {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.product-name {
	font-weight: 600;
	font-size: 0.875rem;
	margin: 0;
	color: #1A1A1A;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-description {
	font-size: 0.75rem;
	color: #6C757D;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-price-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.product-price-original {
	font-size: 0.813rem;
	color: #6C757D;
	text-decoration: line-through;
}

.product-discount {
	font-size: 0.75rem;
	color: #6FE8DE;
	font-weight: 600;
}

.product-price {
	font-size: 1rem;
	font-weight: 700;
	color: #1A1A1A;
}

/* Quantity Controls */
.quantity-control {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.quantity-btn {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: 1px solid #E5E7EB;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #2E2B22;
	font-size: 1.25rem;
	line-height: 1;
	transition: all 0.2s;
	padding: 0;
	font-weight: 500;
}

.quantity-btn:hover {
	background: #F8F9FA;
	border-color: #2E2B22;
}

.quantity-btn:active {
	transform: scale(0.95);
}

.quantity-value {
	min-width: 3rem;
	text-align: center;
	font-weight: 500;
	font-size: 0.875rem;
	border: 1px solid #E5E7EB;
	border-radius: 0.375rem;
	padding: 0.25rem 0.5rem;
}

.quantity-value::-webkit-inner-spin-button,
.quantity-value::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Add to Cart Button in Product Card */
.product-card .btn-primary {
	width: 100%;
	margin-top: auto;
}

.in-cart-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	margin-top: auto;
	padding: 0.75rem 1.5rem;
	background: #E8F5E9;
	color: #2E7D32;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: 2px solid #A5D6A7;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.in-cart-badge:hover {
	background: #C8E6C9;
	border-color: #81C784;
	color: #1B5E20;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.in-cart-badge svg {
	flex-shrink: 0;
}

/* Loading State */
.loading-state {
	text-align: center;
	padding: 4rem 2rem;
	color: #6C757D;
}

.loading-spinner {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border: 4px solid #E5E7EB;
	border-top-color: #6FE8DE;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-bottom: 1rem;
}

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

/* Empty State */
.empty-state {
	text-align: center;
	padding: 4rem 2rem;
	color: #6C757D;
}

.empty-state svg {
	margin-bottom: 1.5rem;
	opacity: 0.3;
}

.empty-state h3 {
	font-size: 1.25rem;
	color: #2E2B22;
	margin-bottom: 0.5rem;
}

.empty-state p {
	font-size: 0.875rem;
	margin: 0;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #E5E7EB;
}

.btn-pagination {
	padding: 0.5rem 1rem;
	background: white;
	border: 1px solid #E5E7EB;
	border-radius: 0.375rem;
	color: #2E2B22;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-pagination:hover {
	background: #F8F9FA;
	border-color: #2E2B22;
}

.pagination-info {
	font-size: 0.875rem;
	color: #6C757D;
}

/* Notifications */
.notification {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.notification.show {
	transform: translateY(0);
	opacity: 1;
}

.notification-success {
	background: #D4EDDA;
	color: #155724;
	border: 1px solid #C3E6CB;
}

.notification-error {
	background: #FEE2E2;
	color: #991B1B;
	border: 1px solid #FCA5A5;
}

/* Footer */
.main-footer {
	background: #2E2B22;
	color: white;
	padding: 2rem 1.5rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.footer-section a:hover {
	color: #6FE8DE;
}

/* Responsive Design for Product Catalog */
@media (max-width: 1024px) {
	.webshop-container {
		flex-direction: column;
	}

	.webshop-sidebar {
		width: 100%;
		position: static;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

@media (max-width: 768px) {
	.hamburger-menu {
		display: block;
	}

	.user-info span {
		display: none;
	}

	.webshop-sidebar {
		display: none;
	}

	.webshop-body {
		padding-top: 120px;
	}

	.main-header {
		padding: 0.75rem 1rem;
	}

	.info-banner {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
		padding: 0.75rem 1rem;
		top: 60px;
	}

	.info-banner-item {
		flex-direction: column;
		gap: 0.25rem;
	}

	.webshop-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.search-bar {
		max-width: none;
	}

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

	.webshop-container {
		padding: 1rem;
	}

	.notification {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
	}
}

@media (max-width: 480px) {
	.product-grid {
		grid-template-columns: 1fr;
	}

	.webshop-container {
		padding: 0.75rem;
		gap: 1rem;
	}

	.product-card {
		border-radius: 0.5rem;
	}

	.product-info {
		padding: 0.75rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ===================================== */
/* Shopping Cart Styles                */
/* ===================================== */

/* Cart Info Banner */
.webshop-cart-info-banner {
	background: #6FE8DE;
	color: #1A1A1A;
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.webshop-cart-info-left,
.webshop-cart-info-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.webshop-cart-info-banner i {
	font-size: 1.25rem;
}

.webshop-bonus-value {
	color: #2E2B22;
}

/* Free Shipping Indicator */
.webshop-cart-free-shipping {
	background: white;
	padding: 0.75rem 1.5rem;
	text-align: center;
	border-bottom: 1px solid #E9ECEF;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	color: #666;
}

.webshop-free-shipping-active {
	color: #6FE8DE;
	font-weight: 600;
}

/* Cart Container */
.webshop-cart-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 2rem;
	align-items: start;
}

.webshop-cart-main {
	min-height: 400px;
}

.webshop-cart-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1A1A1A;
	margin-bottom: 2rem;
}

/* Empty Cart State */
.webshop-cart-empty {
	text-align: center;
	padding: 4rem 2rem;
}

.webshop-cart-empty-icon {
	font-size: 4rem;
	color: #CED4DA;
	margin-bottom: 1.5rem;
}

.webshop-cart-empty h2 {
	font-size: 1.5rem;
	color: #1A1A1A;
	margin-bottom: 0.5rem;
}

.webshop-cart-empty p {
	color: #6C757D;
	margin-bottom: 2rem;
}

/* Cart Items Section */
.webshop-cart-items {
	background: white;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.webshop-cart-items-header {
	display: grid;
	grid-template-columns: 2fr 1fr 150px 1fr 50px;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: #F8F9FA;
	border-bottom: 2px solid #E9ECEF;
	font-weight: 600;
	font-size: 0.875rem;
	color: #495057;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Cart Item */
.webshop-cart-item {
	display: grid;
	grid-template-columns: 2fr 1fr 150px 1fr 50px;
	gap: 1rem;
	padding: 1.5rem;
	border-bottom: 1px solid #E9ECEF;
	align-items: center;
	transition: background-color 0.2s;
}

.webshop-cart-item:last-child {
	border-bottom: none;
}

.webshop-cart-item:hover {
	background: #F8F9FA;
}

.webshop-cart-item.webshop-loading {
	opacity: 0.6;
	pointer-events: none;
}

/* Product Column */
.webshop-cart-col-product {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.webshop-cart-item-image {
	flex-shrink: 0;
	width: 80px;
	aspect-ratio: 1;
	border-radius: 0.5rem;
	overflow: hidden;
	background: white;
	border: 1px solid #E5E7EB;
	display: flex;
	align-items: center;
	justify-content: center;
}

.webshop-cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
}

.webshop-cart-item-info {
	flex: 1;
	min-width: 0;
}

.webshop-cart-item-name {
	font-weight: 600;
	color: #1A1A1A;
	margin-bottom: 0.25rem;
	word-break: break-word;
}

.webshop-cart-item-desc {
	font-size: 0.875rem;
	color: #6C757D;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Price Column */
.webshop-cart-col-price {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.webshop-price-original {
	color: #6C757D;
	text-decoration: line-through;
	font-size: 0.875rem;
}

.webshop-discount-badge {
	background: #FFE8E8;
	color: #DC3545;
	padding: 0.125rem 0.5rem;
	border-radius: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	display: inline-block;
	width: fit-content;
}

.webshop-price-final {
	font-weight: 600;
	color: #1A1A1A;
	font-size: 1.125rem;
}

/* Quantity Column */
.webshop-cart-col-quantity {
	display: flex;
	justify-content: center;
}

.webshop-quantity-controls {
	display: flex;
	align-items: center;
	border: 1px solid #CED4DA;
	border-radius: 0.5rem;
	overflow: hidden;
	background: white;
}

.webshop-qty-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: #F8F9FA;
	color: #495057;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	font-size: 1.125rem;
}

.webshop-qty-btn:hover {
	background: #2E2B22;
	color: white;
}

.webshop-qty-btn:active {
	transform: scale(0.95);
}

.webshop-qty-input {
	width: 60px;
	height: 36px;
	border: none;
	border-left: 1px solid #CED4DA;
	border-right: 1px solid #CED4DA;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	-moz-appearance: textfield;
}

.webshop-qty-input::-webkit-outer-spin-button,
.webshop-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.webshop-qty-input:focus {
	outline: none;
	background: #FFF9F0;
}

/* Total Column */
.webshop-cart-col-total {
	text-align: right;
}

.webshop-line-total {
	font-weight: 700;
	font-size: 1.25rem;
	color: #1A1A1A;
}

/* Actions Column */
.webshop-cart-col-actions {
	display: flex;
	justify-content: center;
}

.webshop-cart-remove-btn {
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: #DC3545;
	cursor: pointer;
	border-radius: 0.5rem;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.webshop-cart-remove-btn:hover {
	background: #FFE8E8;
	transform: scale(1.1);
}

/* Recommended Products Section */
.webshop-cart-recommended {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 2px solid #E9ECEF;
}

.webshop-cart-recommended-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1A1A1A;
	margin-bottom: 1.5rem;
}

.webshop-cart-recommended-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.webshop-recommended-card {
	background: white;
	border: 1px solid #E9ECEF;
	border-radius: 0.75rem;
	overflow: hidden;
	transition: all 0.2s;
}

.webshop-recommended-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.webshop-recommended-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.webshop-recommended-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1rem;
}

.webshop-product-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: #6FE8DE;
	color: #1A1A1A;
	padding: 0.25rem 0.75rem;
	border-radius: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.webshop-recommended-info {
	padding: 1rem;
}

.webshop-recommended-name {
	font-weight: 600;
	font-size: 0.875rem;
	color: #1A1A1A;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.webshop-recommended-desc {
	font-size: 0.75rem;
	color: #6C757D;
	margin-bottom: 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.webshop-recommended-price {
	font-weight: 700;
	color: #2E2B22;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

.webshop-recommended-quantity {
	display: flex;
	align-items: center;
	justify-content: center;
}

.webshop-recommended-quantity .webshop-quantity-controls {
	width: 100%;
}

.webshop-recommended-quantity .webshop-qty-input {
	flex: 1;
}

/* Sidebar */
.webshop-cart-sidebar {
	position: sticky;
	top: 2rem;
}

/* Pricing Card */
.webshop-cart-pricing-card {
	background: white;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
}

.webshop-pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	font-size: 0.875rem;
}

.webshop-pricing-row span:first-child {
	color: #6C757D;
}

.webshop-pricing-row strong {
	color: #1A1A1A;
	font-weight: 600;
}

.webshop-pricing-divider {
	height: 1px;
	background: #E9ECEF;
	margin: 1rem 0;
}

/* Highlighted Pricing Section */
.webshop-pricing-highlighted {
	background: #6FE8DE;
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 1rem 0;
}

.webshop-pricing-highlighted .webshop-pricing-row span:first-child {
	color: #000;
}

.webshop-pricing-highlighted .webshop-pricing-row span,
.webshop-pricing-highlighted .webshop-pricing-row strong {
	color: #000;
}

.webshop-pricing-payment {
	padding: 0.75rem 0 0.5rem 0;
}

.webshop-payment-amount {
	font-size: 1.5rem;
	color: #000;
}

.webshop-pricing-vat-note {
	font-size: 0.75rem;
	color: #000;
	text-align: right;
	margin-top: 0.5rem;
	font-style: italic;
	opacity: 0.7;
}

.webshop-pricing-shipping {
	font-weight: 600;
}

/* Shipping & Delivery Info */
.webshop-shipping-info {
	background: #FFF9F0;
	border-left: 3px solid #FFC107;
	padding: 0.75rem;
	margin: 1rem 0;
	font-size: 0.875rem;
	color: #856404;
	display: flex;
	gap: 0.5rem;
	align-items: start;
	border-radius: 0.25rem;
}

.webshop-shipping-info i {
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.webshop-delivery-info {
	margin: 1.5rem 0;
}

.webshop-delivery-note,
.webshop-delivery-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: #F8F9FA;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	color: #495057;
	margin-bottom: 0.5rem;
}

.webshop-delivery-note i,
.webshop-delivery-date i {
	color: #6FE8DE;
	font-size: 1.125rem;
}

/* Terms Checkbox */
.webshop-terms-checkbox {
	margin: 1.5rem 0;
}

.webshop-terms-checkbox label {
	display: flex;
	gap: 0.75rem;
	align-items: start;
	cursor: pointer;
	font-size: 0.875rem;
	color: #495057;
}

.webshop-terms-checkbox input[type="checkbox"] {
	margin-top: 0.25rem;
	width: 18px;
	height: 18px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #6FE8DE;
}

.webshop-terms-checkbox input[type="checkbox"]:focus {
	outline: none;
}

.webshop-terms-checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid #6FE8DE;
	outline-offset: 2px;
	border-radius: 2px;
}

.webshop-terms-checkbox a {
	color: #6FE8DE;
	text-decoration: underline;
}

.webshop-terms-checkbox a:hover {
	color: #2E2B22;
}

/* Buttons */
.webshop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}

.webshop-btn-primary {
	background: #2E2B22;
	color: white;
}

.webshop-btn-primary:hover {
	background: #2D3530;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.webshop-btn-primary:active {
	transform: translateY(0);
}

.webshop-btn-primary:disabled {
	background: #CED4DA;
	color: #6C757D;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.webshop-btn-block {
	width: 100%;
}

/* Continue Shopping Link */
.webshop-continue-shopping {
	text-align: center;
	margin-top: 1rem;
}

.webshop-continue-shopping a {
	color: #6FE8DE;
	text-decoration: none;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.2s;
}

.webshop-continue-shopping a:hover {
	color: #2E2B22;
}

/* Continue Shopping - Top Position */
.webshop-continue-shopping-top {
	text-align: left;
	padding: 1rem;
	max-width: 1400px;
	margin: 0 auto;
}

.webshop-continue-shopping-top a {
	color: #3E4641;
	font-weight: 500;
}

.webshop-continue-shopping-top a:hover {
	color: #6FE8DE;
}

/* Continue Shopping Button - Pronounced Style */
.webshop-continue-shopping-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #10B981;
	color: white !important;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.webshop-continue-shopping-btn:hover {
	background: #059669;
	color: white !important;
	box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
	transform: translateY(-1px);
}

.webshop-continue-shopping-btn i {
	font-size: 1.1rem;
}

/* Free Products Card */
.webshop-free-products-card {
	background: white;
	border: 2px solid #6FE8DE;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(93, 213, 193, 0.1);
}

.webshop-free-products-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #2E2B22;
	margin-bottom: 1rem;
}

.webshop-free-products-title i {
	color: #6FE8DE;
	font-size: 1.5rem;
}

.webshop-free-product-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid #E9ECEF;
	font-size: 0.875rem;
}

.webshop-free-product-item:last-child {
	border-bottom: none;
}

.webshop-free-product-name {
	flex: 1;
	color: #1A1A1A;
	font-weight: 500;
}

.webshop-free-product-qty {
	color: #6C757D;
	margin-left: 0.5rem;
}

.webshop-free-product-value {
	font-weight: 600;
	color: #6FE8DE;
	margin-left: 1rem;
}

/* Notification Toast */
.webshop-notification {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	z-index: 1000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s;
}

.webshop-notification-show {
	transform: translateY(0);
	opacity: 1;
}

.webshop-notification-success {
	border-left: 4px solid #28A745;
}

.webshop-notification-error {
	border-left: 4px solid #DC3545;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.webshop-cart-container {
		grid-template-columns: 1fr;
		padding: 1.5rem 1rem;
	}

	.webshop-cart-sidebar {
		position: static;
	}

	.webshop-cart-recommended-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	/* Cart Info Banner - Stack vertically */
	.webshop-cart-info-banner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1rem;
	}

	.webshop-cart-info-left,
	.webshop-cart-info-right {
		justify-content: center;
	}

	/* Free Shipping Indicator */
	.webshop-cart-free-shipping {
		font-size: 0.875rem;
		padding: 0.75rem 1rem;
	}

	/* Continue Shopping Button */
	.webshop-continue-shopping {
		padding: 0.75rem 1rem;
	}

	.webshop-continue-shopping-btn {
		font-size: 0.875rem;
		padding: 0.625rem 1rem;
	}

	/* Cart Container */
	.webshop-cart-container {
		padding: 1rem;
	}

	/* Cart Title */
	.webshop-cart-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	/* Cart Items - Hide table header on mobile */
	.webshop-cart-items-header {
		display: none;
	}

	/* Cart Item - Mobile card layout */
	.webshop-cart-item {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1rem;
		position: relative;
	}

	/* Product Column - Image left, info right on mobile */
	.webshop-cart-col-product {
		display: grid;
		grid-template-columns: 100px 1fr;
		gap: 1rem;
		align-items: start;
	}

	.webshop-cart-item-image {
		width: 100px;
		height: 100px;
		margin: 0;
	}

	.webshop-cart-item-info {
		flex: 1;
		min-width: 0;
	}

	.webshop-cart-item-name {
		font-size: 0.875rem;
		line-height: 1.3;
	}

	.webshop-cart-item-desc {
		font-size: 0.75rem;
	}

	/* Price, Quantity, Total columns - Add labels */
	.webshop-cart-col-price,
	.webshop-cart-col-quantity,
	.webshop-cart-col-total {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 0.5rem 0;
		border-top: 1px solid #F1F3F5;
	}

	.webshop-cart-col-price::before {
		content: 'Egységár:';
		color: #6C757D;
		font-size: 0.875rem;
		font-weight: 500;
	}

	.webshop-cart-col-quantity::before {
		content: 'Mennyiség:';
		color: #6C757D;
		font-size: 0.875rem;
		font-weight: 500;
	}

	.webshop-cart-col-total::before {
		content: 'Összeg:';
		color: #6C757D;
		font-size: 0.875rem;
		font-weight: 500;
	}

	/* Actions Column - Position in top right of card */
	.webshop-cart-col-actions {
		position: absolute;
		top: 1rem;
		right: 1rem;
	}

	.webshop-cart-remove-btn {
		width: 36px;
		height: 36px;
		min-height: 44px;
		min-width: 44px;
		padding: 0.5rem;
	}

	/* Quantity Controls - Larger touch targets on mobile */
	.webshop-qty-btn {
		min-width: 44px;
		min-height: 44px;
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}

	.webshop-qty-input {
		min-width: 50px;
		font-size: 1rem;
		padding: 0.5rem;
	}

	/* Recommended Products - 2 columns on mobile */
	.webshop-cart-recommended {
		margin-top: 2rem;
		padding-top: 2rem;
		order: 999; /* Move to bottom on mobile */
	}

	.webshop-cart-recommended-title {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}

	.webshop-cart-recommended-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.webshop-recommended-card {
		font-size: 0.875rem;
	}

	.webshop-recommended-image {
		height: 120px;
	}

	.webshop-recommended-name {
		font-size: 0.875rem;
		line-height: 1.3;
	}

	.webshop-recommended-desc {
		font-size: 0.75rem;
		line-height: 1.3;
		max-height: 2.6em;
	}

	.webshop-recommended-price {
		font-size: 0.875rem;
	}

	/* Sidebar - Full width below cart, before recommended products on mobile */
	.webshop-cart-sidebar {
		position: static;
		margin-top: 2rem;
		order: 2;
	}

	/* Adjust cart container to use flexbox for ordering */
	.webshop-cart-container {
		display: flex;
		flex-direction: column;
	}

	.webshop-cart-main {
		order: 1;
		display: flex;
		flex-direction: column;
	}

	/* Pricing Card */
	.webshop-cart-pricing-card {
		padding: 1.25rem;
	}

	.webshop-pricing-row {
		font-size: 0.875rem;
		padding: 0.625rem 0;
	}

	.webshop-pricing-highlighted {
		padding: 1rem;
	}

	.webshop-pricing-payment .webshop-payment-amount {
		font-size: 1.5rem;
	}

	/* Checkout Button - Full width on mobile */
	.webshop-checkout-btn {
		font-size: 1rem;
		padding: 1rem;
		min-height: 48px;
	}

	/* Address Selector */
	.webshop-address-selector {
		padding: 1rem;
	}

	/* Free Products Card */
	.webshop-free-products-card {
		margin-top: 1rem;
		padding: 1rem;
	}

	/* Terms Checkbox - Better mobile layout */
	.webshop-terms-checkbox {
		padding: 1rem;
		font-size: 0.875rem;
	}

	.webshop-terms-checkbox label {
		line-height: 1.5;
	}
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
	/* Header adjustments for small screens */
	.main-header {
		padding: 0.75rem 1rem;
	}

	.logo-img {
		height: 30px;
	}

	.notification-badge {
		padding: 0.375rem;
	}

	/* Cart Info Banner */
	.webshop-cart-info-banner {
		padding: 0.75rem;
		font-size: 0.875rem;
	}

	.webshop-cart-info-banner i {
		font-size: 1rem;
	}

	/* Cart Container */
	.webshop-cart-container {
		padding: 0.75rem;
	}

	.webshop-cart-title {
		font-size: 1.25rem;
	}

	/* Cart Items */
	.webshop-cart-item {
		padding: 0.75rem;
	}

	/* Stack product info vertically on very small screens */
	.webshop-cart-col-product {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.webshop-cart-item-image {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}

	/* Pricing Card */
	.webshop-cart-pricing-card {
		padding: 1rem;
	}

	.webshop-pricing-payment .webshop-payment-amount {
		font-size: 1.25rem;
	}

	/* Buttons */
	.webshop-btn {
		font-size: 0.875rem;
		padding: 0.75rem 1rem;
	}

	/* Address Selector */
	.webshop-address-selector {
		padding: 0.75rem;
	}

	/* Modals */
	.webshop-modal {
		padding: 0.5rem;
	}

	.webshop-modal-content {
		border-radius: 8px;
		max-width: 100%;
	}
}

/* ====================================
   Address Selector & Modal Styles
   ==================================== */

/* Address Selector */
.webshop-address-selector {
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 20px;
}

.webshop-address-selector-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #1F2937;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.webshop-address-selector-header i {
	font-size: 1.1rem;
	color: #10B981;
}

.webshop-address-selector-content {
	min-height: 80px;
	margin-bottom: 12px;
}

.webshop-address-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px;
	background: #F9FAFB;
	border: 2px dashed #D1D5DB;
	border-radius: 6px;
	color: #6B7280;
	font-size: 0.9rem;
}

.webshop-address-placeholder i {
	font-size: 1.2rem;
}

.webshop-selected-address {
	padding: 12px;
	background: #F0FDF4;
	border: 1px solid #86EFAC;
	border-radius: 6px;
}

.webshop-selected-address-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: #166534;
}

.webshop-selected-address-label strong {
	font-size: 0.95rem;
}

.webshop-selected-address-text {
	color: #374151;
	font-size: 0.9rem;
	line-height: 1.5;
}

.webshop-selected-address-contact {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #6B7280;
	font-size: 0.85rem;
	margin-top: 6px;
}

.webshop-selected-address-contact i {
	font-size: 0.9rem;
}

.webshop-selected-address-contact i.bi-telephone {
	margin-left: 12px;
}

/* Modal Styles */
.webshop-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	overflow-y: auto;
	padding: 20px;
}

.webshop-modal-content {
	background: white;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.webshop-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #E5E7EB;
}

.webshop-modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	color: #1F2937;
}

.webshop-modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #6B7280;
	padding: 4px 8px;
	line-height: 1;
	transition: color 0.2s;
}

.webshop-modal-close:hover {
	color: #1F2937;
}

.webshop-modal-body {
	padding: 24px;
	max-height: calc(100vh - 200px);
	overflow-y: auto;
}

/* Address List */
.webshop-address-list {
	margin-bottom: 20px;
}

.webshop-address-list-loading,
.webshop-address-list-empty,
.webshop-address-list-error {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 40px 20px;
	color: #6B7280;
}

.webshop-address-list-loading i {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Address Card */
.webshop-address-card {
	border: 2px solid #E5E7EB;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
	transition: all 0.2s;
}

.webshop-address-card:hover {
	border-color: #10B981;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.webshop-address-card.selected {
	border-color: #10B981;
	background: #F0FDF4;
}

.webshop-address-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.webshop-address-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.webshop-address-card-title strong {
	color: #1F2937;
	font-size: 1rem;
}

.webshop-address-badge {
	display: inline-block;
	padding: 2px 8px;
	background: #DBEAFE;
	color: #1E40AF;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-left: 8px;
	vertical-align: middle;
}

.webshop-address-card-type {
	color: #6B7280;
	font-size: 0.85rem;
}

.webshop-address-card-body {
	color: #374151;
	margin-bottom: 12px;
}

.webshop-address-card-body p {
	margin: 4px 0;
	line-height: 1.5;
}

.webshop-address-contact {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #6B7280;
	font-size: 0.9rem;
}

.webshop-address-card-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.webshop-btn-sm {
	padding: 6px 12px;
	font-size: 0.875rem;
}

.webshop-btn-danger {
	background: #EF4444;
	color: white;
}

.webshop-btn-danger:hover {
	background: #DC2626;
}

/* Address Form */
.webshop-address-form {
	margin-top: 20px;
	padding: 20px;
	background: #F9FAFB;
	border-radius: 8px;
}

.webshop-address-form h3 {
	margin: 0 0 20px 0;
	color: #1F2937;
	font-size: 1.25rem;
}

.webshop-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.webshop-form-group {
	display: flex;
	flex-direction: column;
}

.webshop-form-group-grow {
	grid-column: 1;
}

.webshop-form-group label {
	margin-bottom: 6px;
	color: #374151;
	font-size: 0.9rem;
	font-weight: 500;
}

.webshop-form-input {
	padding: 10px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}

.webshop-form-input:focus {
	outline: none;
	border-color: #10B981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.webshop-form-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.webshop-form-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.webshop-form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.webshop-modal {
		padding: 10px;
	}

	.webshop-modal-content {
		border-radius: 8px;
	}

	.webshop-modal-header {
		padding: 16px;
	}

	.webshop-modal-body {
		padding: 16px;
	}

	.webshop-form-row {
		grid-template-columns: 1fr;
	}

	.webshop-address-card-actions {
		flex-direction: column;
	}

	.webshop-address-card-actions .webshop-btn-sm {
		width: 100%;
	}
}

/* ===================================== */
/* Order Success Modal                  */
/* ===================================== */

.webshop-order-success-modal {
	max-width: 600px;
}

.webshop-order-success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: #5DD5C1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 48px;
}

.webshop-order-success-modal .webshop-modal-header h2 {
	text-align: center;
	color: #3E4641;
	margin-bottom: 0;
}

.webshop-order-success-message {
	text-align: center;
	font-size: 1rem;
	color: #666;
	margin-bottom: 24px;
}

.webshop-order-details-card,
.webshop-payment-instructions-card,
.webshop-next-steps-card {
	background: #F8F9FA;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.webshop-order-details-card h3,
.webshop-payment-instructions-card h3,
.webshop-next-steps-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #3E4641;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.webshop-order-detail-row,
.webshop-payment-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
	gap: 16px;
}

.webshop-order-detail-row:last-child,
.webshop-payment-detail-row:last-child {
	margin-bottom: 0;
}

.webshop-order-detail-label,
.webshop-payment-detail-label {
	color: #666;
	font-size: 0.875rem;
	min-width: 120px;
}

.webshop-invoice-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #5DD5C1;
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.2s;
}

.webshop-invoice-download-btn:hover {
	background: #4AC4B0;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(93, 213, 193, 0.3);
}

.webshop-invoice-download-btn:active {
	transform: translateY(0);
}

.webshop-invoice-download-btn i {
	font-size: 1rem;
}

.webshop-order-number {
	font-size: 1.25rem;
	color: #5DD5C1;
}

.webshop-invoice-number {
	font-size: 0.875rem;
	color: #6C757D;
	margin-top: 0.25rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.webshop-invoice-download-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #5DD5C1;
	color: white;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 0.875rem;
}

.webshop-invoice-download-link:hover {
	background: #4AC4B0;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(93, 213, 193, 0.3);
}

.webshop-invoice-download-link:active {
	transform: translateY(0);
}

.webshop-order-amount {
	font-size: 1.25rem;
	color: #3E4641;
}

.webshop-payment-instructions-intro {
	color: #666;
	margin-bottom: 16px;
	font-size: 0.875rem;
}

.webshop-copy-field {
	display: flex;
	align-items: center;
	gap: 8px;
}

.webshop-bank-account,
.webshop-payment-reference {
	font-family: 'Courier New', monospace;
	font-size: 1rem;
	color: #3E4641;
	background: white;
	padding: 8px 12px;
	border-radius: 4px;
	border: 1px solid #E0E0E0;
}

.webshop-copy-btn {
	background: #5DD5C1;
	border: none;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

.webshop-copy-btn:hover {
	background: #4AC5B2;
}

.webshop-copy-btn i {
	font-size: 1rem;
}

.webshop-payment-note {
	background: #FFF9E6;
	border-left: 3px solid #FFC107;
	padding: 12px;
	border-radius: 4px;
	margin-top: 16px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.webshop-payment-note i {
	color: #FFC107;
	font-size: 1.25rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.webshop-payment-note p {
	margin: 0;
	font-size: 0.875rem;
	color: #666;
}

.webshop-steps-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.webshop-steps-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: #666;
}

.webshop-steps-list li:last-child {
	margin-bottom: 0;
}

.webshop-steps-list li i {
	color: #5DD5C1;
	font-size: 1.25rem;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 640px) {
	.webshop-order-detail-row,
	.webshop-payment-detail-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.webshop-order-detail-label,
	.webshop-payment-detail-label {
		min-width: auto;
	}

	.webshop-copy-field {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.webshop-bank-account,
	.webshop-payment-reference {
		width: 100%;
		word-break: break-all;
	}

	.webshop-copy-btn {
		width: 100%;
	}

	.webshop-order-success-modal {
		max-width: 100%;
		margin: 0;
	}
}

/* ===================================== */
/* Mobile Menu                         */
/* ===================================== */

/* Header Adjustments */
.header-right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.desktop-nav {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
	position: relative;
}

.nav-link:hover {
	color: #5DD5C1;
}

.nav-link.active {
	font-weight: 600;
	color: #5DD5C1;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 0;
	height: 2px;
	background: #5DD5C1;
}

.user-greeting {
	margin-right: 1rem;
}

.hamburger-menu {
	display: none;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.hamburger-menu:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: white;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid #E5E7EB;
	background: #2E2B22;
	color: white;
}

.mobile-menu-title {
	font-size: 1.125rem;
	font-weight: 600;
}

.mobile-menu-close {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
	flex: 1;
	overflow-y: auto;
	padding: 1rem 0;
}

.mobile-menu-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	color: #1A1A1A;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
	background: #F9FAFB;
	color: #5DD5C1;
}

.mobile-menu-link.active {
	background: #F0FDFA;
	color: #5DD5C1;
	border-left-color: #5DD5C1;
}

.mobile-menu-link svg {
	flex-shrink: 0;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.desktop-nav {
		display: none;
	}

	.user-greeting {
		display: none;
	}

	.hamburger-menu {
		display: block;
	}

	.header-right {
		gap: 1rem;
	}
}

/* Mobile Menu Filters */
.mobile-menu-section {
	padding: 0.5rem 0;
}

.mobile-filters-section {
	border-top: 1px solid #E5E7EB;
	padding-top: 1rem;
	margin-top: 0.5rem;
}

.mobile-filters-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1.5rem;
	margin-bottom: 0.5rem;
}

.mobile-filters-header h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #1A1A1A;
	margin: 0;
}

.mobile-filter-section {
	margin-bottom: 0.5rem;
}

.mobile-filter-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1A1A1A;
	transition: background 0.2s ease;
}

.mobile-filter-header:hover {
	background: #F9FAFB;
}

.mobile-filter-header .chevron {
	transition: transform 0.2s ease;
}

.mobile-filter-header.active .chevron {
	transform: rotate(180deg);
}

.mobile-filter-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-filter-content.active {
	max-height: 500px;
}

.mobile-filter-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 1.5rem 0.625rem 2.5rem;
	cursor: pointer;
	font-size: 0.875rem;
	color: #374151;
	transition: background 0.2s ease;
}

.mobile-filter-option:hover {
	background: #F9FAFB;
}

.mobile-filter-option input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.mobile-filter-option-child {
	padding-left: 3.5rem;
}

.mobile-filter-option span {
	flex: 1;
}
