* { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #f8f9fa;
	color: #1a1a2e;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ── Header ── */
header {
	background: #1a1a2e;
	color: white;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
}
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
}
nav { display: flex; gap: 1rem; align-items: center; }
nav a { color: #ccc; text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: white; }
.icon-btn {
	background: none;
	border: none;
	color: #ccc;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 0.25rem;
	position: relative;
}
.icon-btn:hover { color: white; }
.badge {
	position: absolute;
	top: -6px;
	right: -8px;
	background: #e74c3c;
	color: white;
	font-size: 0.65rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.badge.hidden { display: none; }
.cart-button {
	background: #16213e;
	color: white;
	border: 1px solid #333;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.95rem;
}
.cart-button:hover { background: #0f3460; }

/* ── Search Dropdown ── */
.search-toggle { position: relative; }
.search-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 0.5rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
	width: 360px;
	z-index: 300;
	overflow: hidden;
}
.search-dropdown.hidden { display: none; }
.search-dropdown input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: none;
	border-bottom: 1px solid #eee;
	font-size: 0.95rem;
	outline: none;
	color: #1a1a2e;
}
.search-results { max-height: 300px; overflow-y: auto; }
.search-result-item {
	display: flex;
	gap: 0.75rem;
	padding: 0.6rem 1rem;
	text-decoration: none;
	color: #1a1a2e;
	align-items: center;
	border-bottom: 1px solid #f5f5f5;
}
.search-result-item:hover { background: #f8f9fa; }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; }
.search-thumb-empty { width: 40px; height: 40px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.search-result-item div { flex: 1; }
.search-result-item strong { display: block; font-size: 0.85rem; }
.search-result-item span { font-size: 0.8rem; color: #0f3460; font-weight: 600; }
.search-view-all { display: block; padding: 0.75rem 1rem; text-align: center; color: #0f3460; text-decoration: none; font-size: 0.85rem; font-weight: 600; border-top: 1px solid #eee; }
.search-view-all:hover { background: #f8f9fa; }
.search-empty { padding: 1rem; text-align: center; color: #999; font-size: 0.85rem; }

/* ── Hero Banner ── */
.hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
	color: white;
	padding: 4rem 1.5rem;
	text-align: center;
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.75rem; font-weight: 800; letter-spacing: -0.02em; }
.hero p { font-size: 1.15rem; color: #b0b8c8; margin-bottom: 1.5rem; line-height: 1.5; }
.hero-cta {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: white;
	color: #1a1a2e;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* ── Main content ── */
main {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1.5rem;
	flex: 1;
	width: 100%;
}
.loading { text-align: center; padding: 4rem; color: #666; font-size: 1.1rem; }

/* ── Breadcrumb ── */
.breadcrumb {
	font-size: 0.85rem;
	color: #999;
	margin-bottom: 1.5rem;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}
.breadcrumb a { color: #0f3460; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #ccc; }
.breadcrumb span:last-child { color: #666; }

/* ── Page Title ── */
.page-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

/* ── Sort & Filter Bar ── */
.sort-filter-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.filter-group { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.filter-group select {
	padding: 0.4rem 0.75rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.85rem;
	background: white;
	color: #1a1a2e;
}
.stock-filter {
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
}
.result-count { font-size: 0.85rem; color: #999; }

/* ── Product Grid ── */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}
.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.card-image-wrap { position: relative; }
.product-card img, .card-image-wrap img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background: #eee;
	display: block;
}
.product-card .no-image, .card-image-wrap .no-image {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}
.product-info {
	padding: 1rem 1.25rem;
	text-decoration: none;
	color: inherit;
	flex: 1;
	display: block;
}
.product-info h3 { font-size: 1rem; margin-bottom: 0.4rem; line-height: 1.3; }
.product-info .price { font-size: 1.1rem; font-weight: 700; color: #0f3460; }
.product-info .vendor { font-size: 0.8rem; color: #888; margin-top: 0.2rem; }

/* Wishlist heart on cards */
.wishlist-heart {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0,0,0,0.3);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
	z-index: 2;
}
.wishlist-heart:hover { background: rgba(0,0,0,0.5); }
.wishlist-heart.active { background: rgba(231,76,60,0.2); }

/* Add to Cart button on cards */
.add-to-cart-btn {
	display: block;
	width: 100%;
	padding: 0.7rem;
	background: #0f3460;
	color: white;
	border: none;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
	text-decoration: none;
}
.add-to-cart-btn:hover { background: #16213e; }
.add-to-cart-btn:disabled { background: #ccc; cursor: not-allowed; }

/* ── Cart Drawer ── */
.cart-drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; }
.cart-drawer.hidden { display: none; }
.cart-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.cart-drawer-content {
	position: absolute; right: 0; top: 0; bottom: 0;
	width: min(420px, 90vw);
	background: white;
	display: flex; flex-direction: column;
	box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; border-bottom: 1px solid #eee; }
.cart-close { background: none; border: none; font-size: 2rem; cursor: pointer; color: #666; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.empty-cart { text-align: center; color: #999; padding: 3rem 1rem; }
.cart-line-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #f0f0f0; }
.cart-line-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: #eee; }
.cart-line-details { flex: 1; }
.cart-line-details h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.cart-line-details .variant { font-size: 0.8rem; color: #888; }
.cart-line-details .line-price { font-weight: 600; margin-top: 0.25rem; }
.cart-line-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.cart-line-actions button {
	width: 28px; height: 28px;
	border: 1px solid #ddd; background: #f5f5f5; border-radius: 4px;
	cursor: pointer; font-size: 1rem;
	display: flex; align-items: center; justify-content: center;
}
.cart-line-actions .qty { font-weight: 600; min-width: 20px; text-align: center; }
.remove-line { color: #e74c3c; font-size: 0.8rem !important; background: none !important; border: none !important; cursor: pointer; margin-left: 0.5rem; width: auto !important; }
.cart-footer { padding: 1.25rem; border-top: 1px solid #eee; }
.cart-footer.hidden { display: none; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.checkout-btn {
	display: block; width: 100%; padding: 1rem;
	background: #27ae60; color: white; text-align: center; text-decoration: none;
	border-radius: 8px; font-size: 1.1rem; font-weight: 600; transition: background 0.2s;
}
.checkout-btn:hover { background: #219a52; }
.checkout-note { text-align: center; font-size: 0.8rem; color: #999; margin-top: 0.75rem; }

/* ── PDP ── */
.pdp-container { max-width: 1200px; }
.pdp-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.pdp-main-image img { width: 100%; border-radius: 12px; max-height: 550px; object-fit: cover; background: #eee; }
.pdp-no-image { height: 400px; border-radius: 12px; }
.pdp-thumbnails { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.pdp-thumbnails .thumb {
	width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
	cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: all 0.2s;
}
.pdp-thumbnails .thumb:hover { opacity: 1; }
.pdp-thumbnails .thumb.active { border-color: #0f3460; opacity: 1; }
.pdp-vendor { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.pdp-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.pdp-rating { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.pdp-rating .stars { color: #f39c12; font-size: 1.1rem; letter-spacing: 0.05em; }
.pdp-rating .review-count { font-size: 0.85rem; color: #888; }
.pdp-price { font-size: 1.5rem; font-weight: 700; color: #0f3460; margin-bottom: 1.25rem; }
.pdp-option-group { margin-bottom: 1rem; }
.pdp-option-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.option-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.option-btn {
	padding: 0.4rem 1rem; border: 1px solid #ddd; background: white; border-radius: 6px;
	cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
}
.option-btn:hover { border-color: #0f3460; }
.option-btn.selected { background: #0f3460; color: white; border-color: #0f3460; }
.pdp-quantity { margin-bottom: 1rem; }
.pdp-quantity label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.qty-selector { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.qty-selector button {
	width: 36px; height: 36px; border: none; background: #f5f5f5;
	cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.qty-selector button:hover { background: #eee; }
.qty-selector span { padding: 0 1rem; font-weight: 600; min-width: 40px; text-align: center; }
.pdp-availability { margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600; }
.pdp-availability.in-stock { color: #27ae60; }
.pdp-availability.sold-out { color: #e74c3c; }
.pdp-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.btn-primary {
	padding: 0.75rem 2rem; background: #0f3460; color: white; border: none;
	border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: #16213e; }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; }
.btn-outline {
	padding: 0.75rem 1.5rem; background: white; color: #1a1a2e;
	border: 1px solid #ddd; border-radius: 8px; font-size: 0.95rem; cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: #0f3460; color: #0f3460; }
.btn-outline.active { border-color: #e74c3c; color: #e74c3c; }
.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-text { background: none; border: none; color: #0f3460; cursor: pointer; font-size: 0.85rem; padding: 0.25rem; }
.btn-text:hover { text-decoration: underline; }
.btn-text.danger { color: #e74c3c; }
.btn-text:disabled { opacity: 0.5; cursor: not-allowed; }
.pdp-description { margin-bottom: 1.5rem; line-height: 1.6; color: #444; font-size: 0.95rem; }
.pdp-description p { margin-bottom: 0.75rem; }
.pdp-accordions { border-top: 1px solid #eee; }
.pdp-accordions details { border-bottom: 1px solid #eee; }
.pdp-accordions summary {
	padding: 1rem 0; cursor: pointer; font-weight: 600; font-size: 0.95rem;
	list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.pdp-accordions summary::after { content: '+'; font-size: 1.2rem; color: #888; }
.pdp-accordions details[open] summary::after { content: '−'; }
.pdp-accordions details p { padding: 0 0 1rem; color: #666; font-size: 0.9rem; line-height: 1.6; }

/* ── Collections Grid ── */
.collections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}
.collection-card {
	background: white; border-radius: 12px; overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none; color: inherit; display: block;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.collection-card img { width: 100%; height: 200px; object-fit: cover; }
.collection-placeholder {
	width: 100%; height: 200px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.collection-info { padding: 1.25rem; }
.collection-info h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.collection-info p { color: #666; font-size: 0.9rem; line-height: 1.4; }
.collection-header { margin-bottom: 1rem; }
.collection-desc { color: #666; font-size: 0.95rem; line-height: 1.5; margin-top: 0.5rem; }

/* ── Search Page ── */
.search-page-input {
	display: flex; gap: 0.75rem; margin-bottom: 2rem; max-width: 500px;
}
.search-page-input input {
	flex: 1; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: 8px;
	font-size: 1rem; outline: none;
}
.search-page-input input:focus { border-color: #0f3460; }

/* ── Recently Viewed / Carousel ── */
.recently-viewed-section { margin-top: 3rem; }
.section-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.carousel {
	display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
	scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.carousel-card {
	flex: 0 0 180px; scroll-snap-align: start; background: white;
	border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit;
	box-shadow: 0 2px 6px rgba(0,0,0,0.06); transition: transform 0.2s;
}
.carousel-card:hover { transform: translateY(-2px); }
.carousel-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.no-image-sm {
	width: 100%; height: 140px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.carousel-title { padding: 0.5rem 0.75rem 0; font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.carousel-price { padding: 0.25rem 0.75rem 0.75rem; font-size: 0.8rem; color: #0f3460; font-weight: 700; }
.rec-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── Account Page ── */
.account-container { max-width: 1000px; }
.account-layout { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; }
.account-sidebar { display: flex; flex-direction: column; gap: 0.25rem; }
.account-tab {
	text-align: left; padding: 0.75rem 1rem; border: none; background: none;
	font-size: 0.95rem; cursor: pointer; border-radius: 8px; color: #444; transition: all 0.2s;
}
.account-tab:hover { background: #f0f0f0; }
.account-tab.active { background: #0f3460; color: white; font-weight: 600; }
.account-section h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.profile-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.avatar {
	width: 56px; height: 56px; border-radius: 50%; background: #0f3460; color: white;
	display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700;
}
.loyalty-badge {
	display: inline-block; padding: 0.2rem 0.6rem; background: #fef3cd; color: #856404;
	border-radius: 12px; font-size: 0.75rem; font-weight: 600; margin-top: 0.25rem;
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.info-item label { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.info-item p { font-size: 0.95rem; font-weight: 500; }

/* Orders */
.order-list { display: flex; flex-direction: column; gap: 1rem; }
.order-card { background: white; border: 1px solid #eee; border-radius: 10px; padding: 1.25rem; }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.order-date { font-size: 0.85rem; color: #888; margin-left: 0.75rem; }
.status-badge { padding: 0.2rem 0.6rem; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.status-delivered { background: #d4edda; color: #155724; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-processing { background: #fff3cd; color: #856404; }
.order-items { font-size: 0.9rem; color: #555; margin-bottom: 0.75rem; line-height: 1.4; }
.order-footer { display: flex; justify-content: space-between; align-items: center; }
.order-total { font-weight: 700; font-size: 1rem; }

/* Addresses */
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.address-card { background: white; border: 1px solid #eee; border-radius: 10px; padding: 1.25rem; }
.address-label { display: inline-block; padding: 0.15rem 0.5rem; background: #e8f4fd; color: #0f3460; border-radius: 4px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.75rem; }
.address-card p { font-size: 0.9rem; line-height: 1.5; }
.address-actions { margin-top: 0.75rem; display: flex; gap: 0.75rem; }
.address-card.add-new { display: flex; align-items: center; justify-content: center; border-style: dashed; min-height: 180px; }

/* Payments */
.payment-list { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-card { display: flex; align-items: center; gap: 1rem; background: white; border: 1px solid #eee; border-radius: 10px; padding: 1rem 1.25rem; }
.card-brand { width: 50px; height: 32px; background: #1a1a6c; color: white; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.05em; }
.card-brand.amex { background: #006fcf; }
.card-details { flex: 1; }
.card-details p { font-size: 0.9rem; }
.card-exp { color: #888; font-size: 0.8rem !important; }
.default-badge { padding: 0.15rem 0.5rem; background: #d4edda; color: #155724; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }

/* Preferences */
.pref-group { margin-bottom: 1.5rem; }
.pref-group h3 { font-size: 1rem; margin-bottom: 0.75rem; color: #333; }
.toggle-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; color: #444; cursor: pointer; }
.pref-group select { padding: 0.5rem 0.75rem; border: 1px solid #ddd; border-radius: 6px; font-size: 0.9rem; }

/* ── Wishlist Page ── */
.wishlist-card .wishlist-actions { padding: 0 1.25rem 1rem; display: flex; gap: 0.5rem; flex-direction: column; }
.wishlist-card .add-to-cart-btn { border-radius: 6px; }
.empty-state { text-align: center; padding: 4rem 1rem; grid-column: 1 / -1; }
.empty-state p { color: #888; font-size: 1.1rem; margin-bottom: 1.5rem; }
.empty-state .btn-primary { display: inline-block; text-decoration: none; }

/* ── Footer ── */
footer {
	background: #1a1a2e;
	color: #aaa;
	padding: 3rem 1.5rem 2rem;
	margin-top: auto;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; }
.footer-col a { display: block; color: #aaa; text-decoration: none; font-size: 0.85rem; padding: 0.2rem 0; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #2a2a4e; padding-top: 1.5rem; text-align: center; }
.footer-bottom strong { color: #4ecdc4; }
.tech-stack { font-size: 0.8rem; margin-top: 0.5rem; color: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
	.product-grid { grid-template-columns: 1fr 1fr; }
	.pdp-layout { grid-template-columns: 1fr; gap: 1.5rem; }
	.account-layout { grid-template-columns: 1fr; }
	.account-sidebar { flex-direction: row; overflow-x: auto; gap: 0.5rem; }
	.account-tab { white-space: nowrap; font-size: 0.85rem; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.hero h1 { font-size: 1.75rem; }
	.collections-grid { grid-template-columns: 1fr; }
	.search-dropdown { width: calc(100vw - 2rem); right: -1rem; }
}
@media (max-width: 480px) {
	.product-grid { grid-template-columns: 1fr; }
	.header-inner { flex-wrap: wrap; gap: 0.5rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.pdp-actions { flex-direction: column; }
	.info-grid { grid-template-columns: 1fr; }
}
