/* ==========================================================================
   AEP Custom Luxury E-Commerce Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables (Cute, Custom & Premium E-Commerce) */
:root {
	/* Typography */
	--font-title: 'Fraunces', 'Comfortaa', serif;
	--font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Color Palette (Cute Cream, Oatmeal, and Peach-Coral) */
	--bg-base: #fdfbf7;              /* Warm Milk / Soft Cream */
	--bg-card: #ffffff;              
	--color-primary: #e78a70;        /* Sweet Peach-Coral */
	--color-primary-hover: #d97d64;  /* Deep Coral Sensation */
	--color-secondary: #f5efe6;      /* Warm Oatmeal background */
	--color-secondary-hover: #ebe3d5;/* Muted sand background */
	--color-text: #2d2621;           /* Rich Espresso Brown text */
	--color-text-muted: #5e544f;     /* Soft Cocoa Brown secondary text */
	--color-border: #e8ded1;         /* Soft Sand Border */
	--color-success: #6a8c5b;        
	--color-error: #f0a895;          

	/* Spacing */
	--space-2xs: 4px;
	--space-xs: 8px;
	--space-sm: 12px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 48px;
	--space-3xl: 64px;

	/* Radii & Shadows (Cute & Softer Rounded Corners) */
	--radius-sm: 6px;                
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-full: 9999px;
	--shadow-soft: 0 4px 12px rgba(45, 38, 33, 0.04);
	--shadow-hover: 0 8px 24px rgba(45, 38, 33, 0.08);
	--transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Resets */
*, *:before, *:after {
	box-sizing: border-box;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, form, label, input, button, table, tbody, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	background-color: var(--bg-base);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.3;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
}

ul {
	list-style: none;
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.main-content {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-3xl);
	min-height: calc(100vh - 250px);
}

/* Header & Navigation */
.site-header {
	background-color: rgba(252, 251, 250, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-soft);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: var(--transition-smooth);
	white-space: nowrap;
}

.nav-mobile-icon {
	display: none;
}

.icon-svg {
	width: 22px;
	height: 22px;
	display: block;
	flex-shrink: 0;
}

.logo-graphic {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--color-primary), #f4d0d4);
	color: #2b2927;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(212, 163, 169, 0.25);
	transition: var(--transition-smooth);
	padding: 9px;
	border: 1.5px solid #fff;
	position: relative;
	flex-shrink: 0;
}

.logo-graphic svg {
	width: 100%;
	height: 100%;
	display: block;
	flex-shrink: 0;
}

.logo-graphic::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 1px dashed var(--color-primary);
	border-radius: 50%;
	opacity: 0.6;
	transition: var(--transition-smooth);
}

.site-logo:hover .logo-graphic {
	transform: scale(1.08) rotate(5deg);
	box-shadow: 0 6px 15px rgba(212, 163, 169, 0.4);
}

.site-logo:hover .logo-graphic::before {
	transform: rotate(90deg);
	opacity: 0.9;
}

.logo-text {
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: -0.5px;
	display: flex;
	align-items: center;
}

.logo-icon {
	color: #fff;
	width: 22px;
	height: 22px;
	transition: transform var(--transition-smooth);
}

.site-logo:hover .logo-icon {
	transform: rotate(180deg);
}

.logo-accent {
	color: var(--color-primary);
	font-weight: 800;
	margin: 0 1px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: var(--space-xl);
}

.nav-links {
	display: flex;
	gap: var(--space-lg);
}

.main-nav a, .nav-links a {
	position: relative;
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 0.85rem;
	color: var(--color-text-muted);
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 0;
	transition: var(--transition-smooth);
}

.main-nav a:hover, .nav-links a:hover,
.main-nav a.active, .nav-links a.active {
	color: var(--color-text);
}

/* Luxury active underline indicator */
.main-nav a.active::after, .nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-text);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.cart-icon {
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
}

.cart-count {
	background-color: var(--color-text);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Footer */
.site-footer {
	background-color: var(--bg-card);
	border-top: 1px solid var(--color-border);
	padding: var(--space-2xl) 0;
	text-align: center;
	color: var(--color-text-muted);
	font-family: var(--font-ui);
}



/* Product Cards Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--space-lg);
	margin-top: var(--space-xl);
}

.product-card {
	background-color: transparent;
	border: none;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: none;
	box-shadow: none;
}

.product-card-image {
	width: 100%;
	height: 420px; /* Elegant, taller portrait aspect ratio for fashion boutique look */
	object-fit: cover;
	border-radius: 0;
	transition: var(--transition-smooth);
}

.product-card:hover .product-card-image {
	opacity: 0.82; /* Sleek opacity transition on hover */
	transform: none;
}

.product-card-info {
	padding: var(--space-sm) 0; /* Borderless grid items align straight to edges */
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-card-category {
	font-family: var(--font-ui);
	font-size: 0.8rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	margin-bottom: var(--space-2xs);
	letter-spacing: 0.5px;
}

.product-card-title {
	font-size: 1.25rem;
	margin-bottom: var(--space-xs);
	font-weight: 500;
}

.product-card-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.product-card-price {
	font-family: var(--font-ui);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-text);
}

.product-card-compare-price {
	text-decoration: line-through;
	color: var(--color-text-muted);
	font-size: 0.95rem;
	margin-right: var(--space-2xs);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-ui);
	font-weight: 600;
	padding: 12px 24px;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: var(--transition-smooth);
}

.btn-primary {
	background-color: var(--color-primary);
	color: white;
}

.btn-primary:hover {
	background-color: var(--color-primary-hover);
}

.btn-secondary {
	background-color: var(--color-secondary);
	color: var(--color-text);
}

.btn-secondary:hover {
	background-color: var(--color-secondary-hover);
}

.btn-outline {
	border: 1px solid var(--color-border);
	background-color: transparent;
	color: var(--color-text);
}

.btn-outline:hover {
	background-color: var(--color-border);
}

/* Product Detail Page */
.product-detail-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2xl);
	margin-top: var(--space-xl);
}

@media (max-width: 768px) {
	.product-detail-container {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}
}

.product-detail-image-wrapper {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.product-detail-image {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
}

.product-detail-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-detail-title {
	font-size: 2.5rem;
	margin-bottom: var(--space-xs);
}

.product-detail-price {
	font-family: var(--font-ui);
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: var(--space-md);
}

.product-detail-description {
	color: var(--color-text-muted);
	margin-bottom: var(--space-lg);
	line-height: 1.7;
}

.product-detail-actions {
	display: flex;
	gap: var(--space-md);
	align-items: center;
	margin-bottom: var(--space-lg);
}

.qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	padding: 4px;
	background-color: var(--bg-card);
}

.qty-btn {
	background: none;
	border: none;
	width: 32px;
	height: 32px;
	cursor: pointer;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-input {
	border: none;
	width: 40px;
	text-align: center;
	font-family: var(--font-ui);
	font-weight: 600;
	background: none;
	outline: none;
}

/* Cart / Checkout layout — mobile-first */
.cart-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	min-width: 0;
}

@media (min-width: 900px) {
	.cart-container {
		grid-template-columns: 2fr 1fr;
		gap: var(--space-xl);
	}
}

.cart-items-box, .order-summary-box {
	background-color: var(--bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 16px;
	box-shadow: var(--shadow-soft);
	min-width: 0;
}

@media (min-width: 560px) {
	.cart-items-box, .order-summary-box {
		padding: var(--space-lg);
	}
}

.cart-item {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	padding: var(--space-md) 0;
	border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item-image {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
}

.cart-item-details {
	flex-grow: 1;
}

.cart-item-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: var(--space-2xs);
}

.cart-item-price {
	font-family: var(--font-ui);
	font-weight: 600;
	color: var(--color-primary);
}

.cart-item-actions {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.cart-item-remove {
	color: var(--color-error);
	font-family: var(--font-ui);
	font-size: 0.85rem;
	cursor: pointer;
}

@media (max-width: 576px) {
	.cart-item {
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-areas: 
			"image details"
			"actions actions";
		gap: var(--space-sm);
		align-items: start;
		padding: var(--space-md) 0;
	}
	.cart-item-image {
		grid-area: image;
	}
	.cart-item-details {
		grid-area: details;
	}
	.cart-item-actions {
		grid-area: actions;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 10px;
		width: 100%;
		border-top: 1px dashed var(--color-border);
		padding-top: 10px;
	}
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: var(--space-sm);
	font-family: var(--font-ui);
}

.summary-total {
	font-size: 1.3rem;
	font-weight: 700;
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-sm);
	margin-top: var(--space-sm);
}

/* Forms & Inputs */
.form-group {
	margin-bottom: var(--space-md);
}

.form-label {
	display: block;
	font-family: var(--font-ui);
	font-weight: 500;
	margin-bottom: var(--space-2xs);
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background-color: var(--bg-card);
	font-family: var(--font-body);
	outline: none;
	transition: var(--transition-smooth);
}

.form-control:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

select.form-control {
	height: 48px;
	line-height: 1.5;
	padding-right: 40px !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 9l3 3 3-3' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-position: right 14px center !important;
	background-repeat: no-repeat !important;
	background-size: 16px !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	cursor: pointer;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm);
}

@media (min-width: 560px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-md);
	}
}

/* Alert Boxes */
.alert {
	padding: var(--space-md);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-lg);
	font-family: var(--font-ui);
}

.alert-success {
	background-color: rgba(163, 184, 153, 0.15);
	color: #6a8c5b;
	border: 1px solid var(--color-success);
}

.alert-danger {
	background-color: rgba(217, 154, 154, 0.15);
	color: #a65252;
	border: 1px solid var(--color-error);
}

/* Admin Dashboard CSS (Modern Premium Slate Style) */
.admin-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: 100vh;
	background-color: #f8fafc;
}

.admin-sidebar {
	background-color: #0f172a; /* Sleek Deep Slate Black */
	color: #f8fafc;
	border-right: 1px solid #1e293b;
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.admin-sidebar-nav a {
	display: flex;
	align-items: center;
	padding: 11px 16px;
	border-radius: 8px;
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 0.9rem;
	color: #94a3b8; /* Cool Muted Slate */
	margin-bottom: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.admin-sidebar-nav a:hover {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
}

.admin-sidebar-nav a.active {
	color: #f5ebd9; /* Luxury Blush Rose gold text */
	background-color: rgba(197, 168, 128, 0.12); /* Soft Rose tint */
	font-weight: 600;
	border-left: 3px solid var(--color-primary); /* Matching accent */
	border-radius: 0 8px 8px 0;
	padding-left: 13px;
}

.admin-main {
	padding: 40px 50px;
	background-color: #f8fafc;
}

.admin-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.admin-header h1 {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1.95rem;
	color: #0f172a;
	margin: 0;
}

.admin-header p {
	color: #64748b;
	font-size: 0.9rem;
	margin-top: 5px;
}

/* Luxury Card Blocks */
.cart-items-box, .order-summary-box {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	padding: 28px;
}

/* Premium Admin Table Styles */
.admin-table-container {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	overflow-x: auto;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.admin-table th, .admin-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
	background-color: #f8fafc;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.8rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.admin-table td {
	font-size: 0.9rem;
	color: #334155;
	vertical-align: middle;
}

.admin-table tr:last-child td {
	border-bottom: none;
}

.admin-table tr:hover {
	background-color: #f8fafc;
}

/* Form Inputs */
.admin-main .form-control {
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 11px 15px;
	font-size: 0.9rem;
	background-color: #ffffff;
	color: #0f172a;
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
}

.admin-main .form-control:focus {
	border-color: #1e293b;
	box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.08);
	outline: none;
}

.admin-main .form-label {
	display: block;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.85rem;
	color: #334155;
	margin-bottom: 6px;
}

/* Premium Admin Action Buttons */
.admin-main .btn-primary {
	background-color: #1e293b; /* Deep Dark Slate Primary */
	color: #ffffff;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 11px 22px;
	font-weight: 600;
	font-size: 0.88rem;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(30, 41, 59, 0.08);
	transition: background-color 0.15s ease, transform 0.1s;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.admin-main .btn-primary:hover {
	background-color: #0f172a;
}

.admin-main .btn-secondary {
	background-color: #ffffff;
	color: #334155;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 11px 22px;
	font-weight: 600;
	font-size: 0.88rem;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,0.03);
	transition: all 0.15s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.admin-main .btn-secondary:hover {
	background-color: #f8fafc;
	border-color: #cbd5e1;
}

/* Soft Badges */
.badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	font-family: var(--font-ui);
	text-transform: capitalize;
}

.badge-pending { background-color: #fff4e5; color: #b7791f; }
.badge-paid { background-color: #e6f4ea; color: #137333; }
.badge-shipped { background-color: #e8f0fe; color: #1a73e8; }
.badge-cancelled { background-color: #fce8e6; color: #c5221f; }
.badge-refunded { background-color: #f1f3f4; color: #5f6368; }
.badge-completed { background-color: #e6f4ea; color: #137333; }

/* Admin Mobile Header Styles */
.admin-mobile-header {
	display: none;
	background-color: #ffffff;
	border-bottom: 1px solid #e1e3e5;
	padding: 12px 16px;
	align-items: center;
	gap: 16px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 5px;
	width: 30px;
}

.admin-menu-toggle span {
	background-color: #202223;
	height: 2px;
	width: 100%;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.admin-mobile-title {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1.15rem;
	color: #202223;
}

/* Sidebar Responsive Styles */
@media (max-width: 768px) {
	.admin-layout {
		grid-template-columns: 1fr;
	}
	.admin-mobile-header {
		display: flex;
	}
	.admin-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 260px;
		z-index: 200;
		transform: translateX(-100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 0 20px rgba(0,0,0,0.15);
	}
	.admin-sidebar.open {
		transform: translateX(0);
	}
	.admin-main {
		padding: 20px;
	}
	.admin-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.admin-header .btn-primary {
		width: 100%;
	}
}

/* Sidebar Overlay for Mobile Layout (Placed outside grid flow) */
.admin-sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	z-index: 150;
	backdrop-filter: blur(2px);
}
.admin-sidebar-overlay.active {
	display: block;
}

/* Storefront Header Responsiveness */
@media (max-width: 768px) {
	.header-container {
		height: 74px;
	}
	.site-logo {
		gap: 10px;
	}
	.logo-text {
		font-size: 1.3rem;
	}
	.logo-graphic {
		width: 38px;
		height: 38px;
		padding: 8px;
		font-size: 1.1rem;
	}
	.logo-graphic::before {
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
	}
	.main-nav {
		gap: var(--space-md);
	}
	.nav-links {
		gap: var(--space-sm);
	}
	.nav-actions {
		gap: var(--space-sm);
	}
}

@media (max-width: 480px) {
	.header-container {
		height: 66px;
		padding: 0 var(--space-xs);
	}
	.site-logo {
		gap: 8px;
	}
	.logo-text {
		font-size: 1.1rem;
		letter-spacing: 0.5px;
	}
	.logo-subtext {
		font-size: 0.6rem;
		padding: 1px 4px;
		letter-spacing: 0.5px;
	}
	.logo-graphic {
		width: 34px;
		height: 34px;
		padding: 7px;
		font-size: 0.9rem;
	}
	.logo-graphic::before {
		display: none;
	}
	.main-nav {
		gap: 10px;
	}
	.nav-links {
		gap: 8px;
	}
	.nav-actions {
		gap: 12px;
	}
	.nav-text {
		display: none;
	}
	.nav-mobile-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 10px;
		color: var(--color-text);
		transition: color 0.2s ease, background 0.2s ease;
	}
	.nav-mobile-icon:hover {
		color: var(--color-primary);
		background: rgba(212,163,169,0.12);
	}
	a.active .nav-mobile-icon {
		color: var(--color-primary);
	}
}

/* Account Page Grid — mobile-first */
.account-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	margin-bottom: 80px;
	width: 100%;
	min-width: 0;
}

@media (min-width: 992px) {
	.account-grid {
		grid-template-columns: 1fr minmax(300px, 340px);
		gap: 36px;
	}
}

/* Account sidebar panels — never exceed viewport */
.account-sidebar {
	min-width: 0;
	width: 100%;
}

.account-sidebar .cart-items-box {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* Inline form grids inside account — mobile-first: stacked, then side-by-side */
.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

@media (min-width: 480px) {
	.form-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

/* Order cards — prevent overflow on small screens */
.order-card {
	min-width: 0;
	word-break: break-word;
}

.order-card .order-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}


/* Fluid Main Content for full-width landing pages */
.main-content-fluid {
	padding-bottom: var(--space-3xl);
	min-height: calc(100vh - 250px);
}

/* Shop Controls Mobile Responsiveness */
@media (max-width: 576px) {
	.shop-controls {
		flex-direction: column;
		align-items: stretch !important;
		gap: 15px !important;
	}
	.shop-controls form {
		max-width: 100% !important;
	}
	.shop-controls select {
		width: 100% !important;
	}
	.shop-controls > div {
		width: 100%;
		justify-content: space-between;
		display: flex;
	}
}

/* Sitewide Announcement Banner */
.announcement-banner {
	background-color: var(--color-primary);
	color: #ffffff;
	text-align: center;
	padding: 10px 20px;
	font-family: var(--font-ui);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	z-index: 1001;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Two Column Grid (stacks on mobile) */
.responsive-grid-2 {
	display: grid;
