/* ============================================
   POSH CUSTOMER DASHBOARD - Modern Styles
   ============================================ */

:root {
	--posh-primary: #E0457B;
	--posh-primary-dark: #c03a68;
	--posh-primary-light: #f5a5c0;
	--posh-secondary: #6c757d;
	--posh-success: #28a745;
	--posh-warning: #ffc107;
	--posh-danger: #dc3545;
	--posh-bg: #f8f9fa;
	--posh-card-bg: #ffffff;
	--posh-border: #e0e0e0;
	--posh-text: #333333;
	--posh-text-light: #666666;
	--posh-text-muted: #999999;
	--posh-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	--posh-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
	--posh-radius: 12px;
	--posh-radius-sm: 8px;
	--posh-spacing: 1.5rem;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.posh-customer-dashboard {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--posh-text);
	line-height: 1.6;
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.posh-dashboard-welcome {
	background: linear-gradient(135deg, var(--posh-primary) 0%, var(--posh-primary-dark) 100%);
	border-radius: var(--posh-radius);
	padding: 2.5rem 2rem;
	margin-bottom: 2rem;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	box-shadow: var(--posh-shadow);
}

.posh-welcome-content {
	flex: 1;
	min-width: 250px;
}

.posh-welcome-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	color: white;
}

.posh-welcome-subtitle {
	font-size: 1.1rem;
	margin: 0;
	opacity: 0.95;
}

.posh-welcome-actions {
	flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.posh-btn-primary,
.posh-btn-secondary,
.posh-btn-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--posh-radius-sm);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.95rem;
	font-family: inherit;
}

.posh-btn-primary {
	background: var(--posh-primary);
	color: white;
	box-shadow: 0 2px 8px rgba(224, 69, 123, 0.3);
}

.posh-btn-primary:hover {
	background: var(--posh-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(224, 69, 123, 0.4);
	color: white;
	text-decoration: none;
}

.posh-btn-secondary {
	background: var(--posh-bg);
	color: var(--posh-text);
	border: 1px solid var(--posh-border);
}

.posh-btn-secondary:hover {
	background: #e9ecef;
	border-color: var(--posh-primary);
	color: var(--posh-primary);
	text-decoration: none;
}

.posh-btn-link {
	background: none;
	color: var(--posh-primary);
	padding: 0.5rem 0.75rem;
}

.posh-btn-link:hover {
	color: var(--posh-primary-dark);
	text-decoration: underline;
}

.posh-btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.posh-btn-shop {
	background: white;
	color: var(--posh-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.posh-btn-shop:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: var(--posh-primary-dark);
}

/* ============================================
   STATS GRID
   ============================================ */

.posh-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.posh-stat-card {
	background: var(--posh-card-bg);
	border-radius: var(--posh-radius);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: var(--posh-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.posh-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--posh-shadow-hover);
}

.posh-stat-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--posh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.posh-stat-icon-orders {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.posh-stat-icon-spent {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
}

.posh-stat-icon-advocate {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
}

.posh-stat-content {
	flex: 1;
}

.posh-stat-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--posh-text);
	margin-bottom: 0.25rem;
}

.posh-stat-label {
	font-size: 0.875rem;
	color: var(--posh-text-light);
	font-weight: 500;
}

/* ============================================
   DASHBOARD CARDS
   ============================================ */

.posh-dashboard-card {
	background: var(--posh-card-bg);
	border-radius: var(--posh-radius);
	padding: 0;
	margin-bottom: 2rem;
	box-shadow: var(--posh-shadow);
	overflow: hidden;
}

.posh-card-header {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--posh-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fafafa;
}

.posh-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--posh-text);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.posh-card-title svg {
	color: var(--posh-primary);
	flex-shrink: 0;
}

.posh-card-body {
	padding: 2rem;
}

/* ============================================
   INFO GRID
   ============================================ */

.posh-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.posh-info-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.posh-info-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--posh-text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.posh-info-value {
	font-size: 1rem;
	color: var(--posh-text);
}

.posh-info-value a {
	color: var(--posh-primary);
	text-decoration: none;
}

.posh-info-value a:hover {
	text-decoration: underline;
}

.posh-info-value small {
	display: block;
	font-size: 0.875rem;
	color: var(--posh-text-muted);
	margin-top: 0.25rem;
}

/* ============================================
   ADDRESSES GRID
   ============================================ */

.posh-addresses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.posh-address {
	line-height: 1.8;
	color: var(--posh-text);
}

/* ============================================
   ORDERS LIST
   ============================================ */

.posh-orders-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.posh-order-item {
	border: 1px solid var(--posh-border);
	border-radius: var(--posh-radius-sm);
	padding: 1.25rem;
	transition: all 0.3s ease;
}

.posh-order-item:hover {
	border-color: var(--posh-primary);
	box-shadow: 0 2px 8px rgba(224, 69, 123, 0.1);
}

.posh-order-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.posh-order-info {
	flex: 1;
	min-width: 200px;
}

.posh-order-number {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--posh-primary);
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
}

.posh-order-number:hover {
	color: var(--posh-primary-dark);
	text-decoration: underline;
}

.posh-order-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--posh-text-light);
	flex-wrap: wrap;
}

.posh-order-separator {
	color: var(--posh-text-muted);
}

.posh-order-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
	text-align: right;
}

.posh-order-status {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.posh-order-status-processing {
	background: #fff3cd;
	color: #856404;
}

.posh-order-status-completed {
	background: #d4edda;
	color: #155724;
}

.posh-order-status-on-hold {
	background: #d1ecf1;
	color: #0c5460;
}

.posh-order-status-pending {
	background: #f8d7da;
	color: #721c24;
}

.posh-order-status-cancelled {
	background: #f5c6cb;
	color: #721c24;
}

.posh-order-status-failed {
	background: #f5c6cb;
	color: #721c24;
}

.posh-order-total {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--posh-text);
}

.posh-order-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============================================
   ADVOCATE INFO
   ============================================ */

.posh-advocate-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.posh-advocate-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.posh-advocate-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--posh-text);
}

.posh-advocate-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--posh-text-light);
	font-size: 0.95rem;
}

.posh-advocate-contact {
	margin-top: 0.5rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.posh-empty-state {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--posh-text-light);
}

.posh-empty-state svg {
	margin: 0 auto 1rem;
	display: block;
	color: var(--posh-text-muted);
}

.posh-empty-state p {
	font-size: 1.1rem;
	margin: 0 0 1.5rem 0;
	color: var(--posh-text-light);
}

/* ============================================
   PAGINATION
   ============================================ */

.posh-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.posh-pagination-link,
.posh-pagination-current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: var(--posh-radius-sm);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.posh-pagination-link {
	background: var(--posh-bg);
	color: var(--posh-text);
	border: 1px solid var(--posh-border);
}

.posh-pagination-link:hover {
	background: var(--posh-primary);
	color: white;
	border-color: var(--posh-primary);
	text-decoration: none;
}

.posh-pagination-current {
	background: var(--posh-primary);
	color: white;
	border: 1px solid var(--posh-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   PERKS POINTS HIGHLIGHT
   ============================================ */

.posh-perks-highlight {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 2px solid var(--posh-primary-light);
	border-radius: var(--posh-radius);
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: var(--posh-shadow);
}

.posh-perks-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.posh-perks-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--posh-primary) 0%, var(--posh-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.posh-perks-info {
	flex: 1;
}

.posh-perks-balance {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--posh-primary);
	margin-bottom: 0.25rem;
	line-height: 1;
}

.posh-perks-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--posh-text);
	margin-bottom: 0.5rem;
}

.posh-perks-message {
	font-size: 0.95rem;
	color: var(--posh-text-light);
	margin: 0.75rem 0 0 0;
}

.posh-perks-cta {
	margin-top: 1rem;
	display: inline-block;
}

/* ============================================
   FAVORITE PRODUCTS
   ============================================ */

.posh-favorite-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.posh-favorite-product {
	background: var(--posh-card-bg);
	border: 1px solid var(--posh-border);
	border-radius: var(--posh-radius-sm);
	overflow: hidden;
	transition: all 0.3s ease;
}

.posh-favorite-product:hover {
	box-shadow: var(--posh-shadow-hover);
	transform: translateY(-2px);
}

.posh-favorite-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.posh-favorite-product-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: var(--posh-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.posh-favorite-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.posh-favorite-product:hover .posh-favorite-product-image img {
	transform: scale(1.05);
}

.posh-favorite-product-info {
	padding: 1.25rem;
}

.posh-favorite-product-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--posh-text);
	margin: 0 0 0.75rem 0;
	line-height: 1.4;
}

.posh-favorite-product-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.posh-favorite-product-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--posh-primary);
}

.posh-favorite-product-count {
	font-size: 0.875rem;
	color: var(--posh-text-light);
}

/* ============================================
   QUICK ACTIONS
   ============================================ */

.posh-quick-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.posh-quick-action-card {
	background: var(--posh-card-bg);
	border: 1px solid var(--posh-border);
	border-radius: var(--posh-radius);
	padding: 1.5rem;
	display: flex;
	gap: 1rem;
	transition: all 0.3s ease;
	box-shadow: var(--posh-shadow);
}

.posh-quick-action-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--posh-shadow-hover);
	border-color: var(--posh-primary);
}

.posh-quick-action-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--posh-primary-light) 0%, var(--posh-primary) 100%);
	border-radius: var(--posh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.posh-quick-action-content {
	flex: 1;
}

.posh-quick-action-content h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--posh-text);
	margin: 0 0 0.25rem 0;
}

.posh-quick-action-content p {
	font-size: 0.875rem;
	color: var(--posh-text-light);
	margin: 0 0 0.75rem 0;
}

.posh-quick-action-link {
	color: var(--posh-primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.posh-quick-action-link:hover {
	color: var(--posh-primary-dark);
	text-decoration: underline;
}

/* ============================================
   ADMIN SECTION (matches advocate-dashboard style)
   ============================================ */

.section-admin input[type="text"]:focus {
	outline: none;
	border-color: #c73869;
	box-shadow: 0 0 0 2px #fcd2e0;
}

.section-admin .admin-result:hover {
	background: #fce5ef;
	border-color: #E0457B;
}

/* ============================================
   CONTACT SUPPORT MODAL
   ============================================ */

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

.posh-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
}

.posh-modal-content {
	position: relative;
	background: white;
	border-radius: var(--posh-radius);
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	z-index: 10001;
}

.posh-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid var(--posh-border);
}

.posh-modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--posh-text);
}

.posh-modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	color: var(--posh-text-muted);
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--posh-radius-sm);
	transition: all 0.2s ease;
}

.posh-modal-close:hover {
	background: var(--posh-bg-light);
	color: var(--posh-text);
}

.posh-modal-body {
	padding: 1.5rem;
	overflow-y: auto;
	flex: 1;
}

.posh-form-group {
	margin-bottom: 1.5rem;
}

.posh-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--posh-text);
	font-size: 0.95rem;
}

.posh-form-group select,
.posh-form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--posh-border);
	border-radius: var(--posh-radius-sm);
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--posh-text);
	transition: border-color 0.2s ease;
}

.posh-form-group select:focus,
.posh-form-group textarea:focus {
	outline: none;
	border-color: var(--posh-primary);
	box-shadow: 0 0 0 3px rgba(224, 69, 123, 0.1);
}

.posh-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.posh-modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	padding: 1.5rem;
	border-top: 1px solid var(--posh-border);
	background: var(--posh-bg-light);
}

@media (max-width: 768px) {
	.posh-modal-content {
		margin: 0;
		max-height: 100vh;
		border-radius: 0;
	}
	
	.posh-modal-header,
	.posh-modal-body,
	.posh-modal-footer {
		padding: 1rem;
	}
}

@media (max-width: 768px) {
	.posh-customer-dashboard {
		padding: 0 0.75rem;
		margin: 1rem auto;
	}
	
	.posh-perks-content {
		flex-direction: column;
		text-align: center;
	}
	
	.posh-perks-balance {
		font-size: 2rem;
	}
	
	.posh-favorite-products {
		grid-template-columns: 1fr;
	}
	
	.posh-quick-actions {
		grid-template-columns: 1fr;
	}
	
	.section-admin input[type="text"] {
		max-width: 100% !important;
	}

	.posh-dashboard-welcome {
		padding: 2rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.posh-welcome-title {
		font-size: 1.5rem;
	}

	.posh-welcome-actions {
		width: 100%;
	}

	.posh-btn-shop {
		width: 100%;
		justify-content: center;
	}

	.posh-stats-grid {
		grid-template-columns: 1fr;
	}

	.posh-card-header {
		padding: 1.25rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.posh-card-body {
		padding: 1.5rem;
	}

	.posh-addresses-grid {
		grid-template-columns: 1fr;
	}

	.posh-order-header {
		flex-direction: column;
	}

	.posh-order-right {
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}

	.posh-order-actions {
		width: 100%;
	}

	.posh-order-actions .posh-btn-secondary,
	.posh-order-actions .posh-btn-link {
		flex: 1;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.posh-welcome-title {
		font-size: 1.25rem;
	}

	.posh-welcome-subtitle {
		font-size: 0.95rem;
	}

	.posh-stat-card {
		padding: 1.25rem;
	}

	.posh-stat-icon {
		width: 48px;
		height: 48px;
	}

	.posh-stat-value {
		font-size: 1.5rem;
	}

	.posh-card-title {
		font-size: 1.1rem;
	}

	.posh-info-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   SUPPORT TICKETS SECTION
   ============================================ */

.posh-support-tickets-section .posh-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.posh-ticket-filters {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.posh-filter-btn {
	padding: 0.5rem 1rem;
	border: 2px solid var(--posh-border);
	background: white;
	border-radius: var(--posh-radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--posh-text-muted);
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.posh-filter-btn:hover {
	border-color: var(--posh-primary);
	color: var(--posh-primary);
	background: var(--posh-bg-light);
}

.posh-filter-btn.active {
	border-color: var(--posh-primary);
	background: var(--posh-primary);
	color: white;
}

.posh-tickets-loading {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--posh-text-muted);
}

.posh-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid var(--posh-border);
	border-top-color: var(--posh-primary);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto 1rem;
}

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

.posh-tickets-error {
	text-align: center;
	padding: 2rem 1rem;
	color: #dc3545;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: var(--posh-radius-sm);
	margin: 1rem 0;
}

.posh-tickets-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.posh-ticket-item {
	background: var(--posh-bg-light);
	border: 2px solid var(--posh-border);
	border-radius: var(--posh-radius);
	padding: 1.25rem;
	transition: all 0.2s ease;
}

.posh-ticket-item:hover {
	border-color: var(--posh-primary);
	box-shadow: 0 4px 12px rgba(224, 69, 123, 0.1);
}

.posh-ticket-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	gap: 1rem;
}

.posh-ticket-id {
	font-weight: 600;
	color: var(--posh-text);
	font-size: 0.95rem;
}

.posh-ticket-status {
	padding: 0.25rem 0.75rem;
	border-radius: var(--posh-radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.posh-ticket-status--new {
	background: #e3f2fd;
	color: #1976d2;
}

.posh-ticket-status--open {
	background: #fff3e0;
	color: #f57c00;
}

.posh-ticket-status--pending {
	background: #fce4ec;
	color: #c2185b;
}

.posh-ticket-status--hold {
	background: #f3e5f5;
	color: #7b1fa2;
}

.posh-ticket-status--solved {
	background: #e8f5e9;
	color: #388e3c;
}

.posh-ticket-status--closed {
	background: #eceff1;
	color: #546e7a;
}

.posh-ticket-subject {
	font-size: 1rem;
	font-weight: 600;
	color: var(--posh-text);
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.posh-ticket-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
	font-size: 0.875rem;
	color: var(--posh-text-muted);
}

.posh-ticket-priority {
	padding: 0.25rem 0.5rem;
	border-radius: var(--posh-radius-sm);
	font-size: 0.75rem;
	font-weight: 500;
}

.posh-ticket-priority--low {
	background: #e8f5e9;
	color: #2e7d32;
}

.posh-ticket-priority--normal {
	background: #e3f2fd;
	color: #1976d2;
}

.posh-ticket-priority--high {
	background: #fff3e0;
	color: #f57c00;
}

.posh-ticket-priority--urgent {
	background: #ffebee;
	color: #c62828;
}

.posh-ticket-date {
	color: var(--posh-text-muted);
}

.posh-ticket-actions {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--posh-border);
}

.posh-tickets-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--posh-text-muted);
}

.posh-tickets-empty svg {
	margin: 0 auto 1.5rem;
	display: block;
	color: var(--posh-border);
}

.posh-tickets-empty p {
	margin: 0.5rem 0;
	font-size: 1rem;
}

.posh-tickets-empty-subtitle {
	font-size: 0.875rem !important;
	color: var(--posh-text-muted);
}

.posh-tickets-pagination {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--posh-border);
}

.posh-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.posh-pagination-btn {
	padding: 0.5rem 1rem;
	border: 2px solid var(--posh-border);
	background: white;
	border-radius: var(--posh-radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--posh-text);
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	min-width: 40px;
}

.posh-pagination-btn:hover:not(.active) {
	border-color: var(--posh-primary);
	color: var(--posh-primary);
	background: var(--posh-bg-light);
}

.posh-pagination-btn.active {
	border-color: var(--posh-primary);
	background: var(--posh-primary);
	color: white;
	cursor: default;
}

.posh-pagination-ellipsis {
	padding: 0.5rem;
	color: var(--posh-text-muted);
}

@media (max-width: 768px) {
	.posh-support-tickets-section .posh-card-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.posh-ticket-filters {
		width: 100%;
	}

	.posh-filter-btn {
		flex: 1;
		min-width: 0;
	}

	.posh-ticket-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.posh-ticket-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}


