/* ===== MINIMALIST PAGES CSS ===== */

/* ===== PAGE HEADERS ===== */
.page-header {
	background: #ffffff;
	border-bottom: 1px solid #f0f0f0;
	padding: 4rem 2rem;
	margin-top: -80px;
	padding-top: 6rem;
	text-align: center;
}

.page-header-container {
	max-width: 800px;
	margin: 0 auto;
}

.page-title {
	font-size: 3.5rem;
	font-weight: 200;
	color: #000000;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.page-subtitle {
	font-size: 1.3rem;
	color: #666666;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto;
}

/* ===== PROFILE HERO ===== */
.profile-hero {
	background: #fafafa;
	border-bottom: 1px solid #f0f0f0;
	padding: 4rem 2rem;
	margin-top: -80px;
	padding-top: 6rem;
}

.profile-hero-container {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4rem;
	align-items: center;
}

.profile-avatar-section {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.profile-avatar {
	width: 80px;
	height: 80px;
	border: 2px solid #000000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 500;
	color: #000000;
	background: #ffffff;
}

.profile-name {
	font-size: 2.5rem;
	font-weight: 200;
	color: #000000;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.profile-email {
	color: #666666;
	font-weight: 300;
	font-size: 1.1rem;
}

.profile-stats {
	display: flex;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	border: 1px solid #f0f0f0;
	background: #ffffff;
	min-width: 80px;
}

.stat-number {
	font-size: 2rem;
	font-weight: 200;
	color: #000000;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: #666666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

/* ===== SECTIONS ===== */
.page-content {
	background: #ffffff;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 200;
	color: #000000;
	letter-spacing: -0.02em;
}

.count-indicator {
	color: #666666;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-description {
	color: #666666;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	font-weight: 300;
	max-width: 800px;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
	padding: 4rem 0;
	background: #ffffff;
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.action-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 3rem 2rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}

.action-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border-color: #e0e0e0;
}

.action-icon {
	width: 60px;
	height: 60px;
	border: 2px solid #000000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #000000;
	background: #ffffff;
	flex-shrink: 0;
}

.action-title {
	font-size: 1.3rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.5rem;
}

.action-description {
	color: #666666;
	font-weight: 300;
	margin: 0;
}

/* ===== WISHLISTS GRID ===== */
.wishlists-section {
	padding: 4rem 0;
	background: #fafafa;
}

.wishlists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.wishlist-card {
	background: #ffffff;
	padding: 0.7rem;
	border: 1px solid #f0f0f0;
	transition: all 0.2s ease;
}

.wishlist-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border-color: #e0e0e0;
}

.wishlist-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.wishlist-title {
	font-size: 1.4rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.5rem;
}

.wishlist-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.9rem;
	color: #666666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wishlist-description {
	color: #666666;
	line-height: 1.5;
	margin-bottom: 2rem;
	font-weight: 300;
}

.wishlist-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

/* ===== WISHLIST AUTHOR ===== */
.wishlist-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
	background: #fafafa;
}

.author-label {
	color: #999999;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
}

.author-name {
	color: #000000;
	font-weight: 500;
	font-size: 1rem;
}

/* ===== ITEMS PREVIEW ===== */
.items-preview {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #fafafa;
	border: 1px solid #f0f0f0;
}

.preview-title {
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.preview-list {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.preview-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem;
	background: #ffffff;
	border: 1px solid #f0f0f0;
	font-size: 0.9rem;
}

.item-name {
	color: #000000;
	font-weight: 400;
}

.item-status {
	color: #666666;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.preview-more {
	color: #666666;
	font-size: 0.9rem;
	font-style: italic;
	text-align: center;
	padding: 0.8rem;
}

/* ===== INVITE SECTION ===== */
.invite-section {
	padding: 4rem 0;
	background: #ffffff;
}

.invite-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 3rem;
	max-width: 600px;
	margin: 0 auto;
}

.invite-header {
	text-align: center;
	margin-bottom: 3rem;
}

.invite-description {
	color: #666666;
	font-weight: 300;
	margin-top: 1rem;
}

.input-with-button {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.form-input.large {
	flex: 1;
}

/* ===== FRIENDS GRID ===== */
.friends-section,
.incoming-section,
.pending-section {
	padding: 4rem 0;
}

.friends-section {
	background: #fafafa;
}

.section-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 3rem;
}

.friends-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.friend-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 2rem;
	transition: all 0.2s ease;
}

.friend-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border-color: #e0e0e0;
}

.friend-avatar-section {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.friend-avatar {
	width: 60px;
	height: 60px;
	border: 2px solid #000000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #000000;
	background: #ffffff;
}

.friend-info {
	text-align: center;
	margin-bottom: 1.5rem;
}

.friend-name {
	font-size: 1.2rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.5rem;
}

.friend-email {
	color: #666666;
	font-size: 0.9rem;
	font-weight: 300;
}

.shared-wishlists {
	margin-bottom: 2rem;
}

.shared-title {
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
}

.shared-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.shared-item {
	padding: 0.8rem;
	background: #fafafa;
	border: 1px solid #f0f0f0;
	text-align: center;
	font-size: 0.9rem;
}

.no-shared {
	text-align: center;
	color: #999999;
	font-style: italic;
	padding: 1rem;
}

.friend-actions {
	text-align: center;
}

/* ===== INVITATIONS ===== */
.invitations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.invitation-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.2s ease;
}

.invitation-card:hover {
	border-color: #e0e0e0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.invitation-avatar {
	width: 50px;
	height: 50px;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 500;
	color: #000000;
	background: #fafafa;
	flex-shrink: 0;
}

.invitation-details {
	flex: 1;
}

.inviter-name {
	font-size: 1.1rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.3rem;
}

.inviter-email {
	color: #666666;
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
}

.invitation-time {
	color: #999999;
	font-size: 0.8rem;
}

.invitation-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* ===== PENDING GRID ===== */
.pending-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 3rem;
}

.pending-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: #ffffff;
	border: 1px solid #f0f0f0;
}

.pending-avatar {
	width: 40px;
	height: 40px;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
	background: #fafafa;
}

.pending-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.pending-email {
	color: #000000;
	font-weight: 500;
}

.pending-time {
	color: #666666;
	font-size: 0.9rem;
}

.status-badge {
	padding: 0.5rem 1rem;
	background: #fafafa;
	color: #666666;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid #f0f0f0;
}

/* ===== QUESTIONS ===== */
.questions-section {
	padding: 4rem 0;
	background: #ffffff;
}

.questions-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.question-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 3rem;
	transition: all 0.2s ease;
}

.question-card:hover {
	border-color: #e0e0e0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.question-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

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

.item-icon {
	width: 40px;
	height: 40px;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: #000000;
	background: #fafafa;
}

.item-name {
	font-size: 1.3rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.5rem;
}

.wishlist-info {
	font-size: 0.9rem;
	color: #666666;
}

.wishlist-link {
	color: #000000;
	text-decoration: none;
	border-bottom: 1px solid #e0e0e0;
}

.time-badge {
	color: #666666;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.question-bubble,
.reply-bubble {
	background: #fafafa;
	border: 1px solid #f0f0f0;
	padding: 2rem;
	margin-bottom: 2rem;
}

.question-label,
.reply-label {
	font-size: 0.9rem;
	font-weight: 500;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.question-body,
.reply-content {
	color: #000000;
	line-height: 1.6;
	font-weight: 400;
}

.reply-section {
	border-top: 1px solid #f0f0f0;
	padding-top: 2rem;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.reply-help {
	color: #666666;
	font-size: 0.9rem;
	font-style: italic;
}

/* ===== EMPTY STATES ===== */
.empty-state {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.empty-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #999999;
	margin: 0 auto 2rem auto;
}

.empty-title {
	font-size: 2rem;
	font-weight: 200;
	color: #000000;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.empty-description {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 3rem;
	font-weight: 300;
	font-size: 1.1rem;
}

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

/* ===== SHARED PREVIEW ===== */
.shared-preview {
	padding: 4rem 0;
	background: #fafafa;
}

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

.shared-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 2rem;
	text-align: center;
	transition: all 0.2s ease;
}

.shared-card:hover {
	transform: translateY(-1px);
	border-color: #e0e0e0;
}

.shared-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 0.5rem;
}

.shared-author {
	color: #666666;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.view-all-link {
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
}

.view-all-link:hover {
	border-bottom-color: #000000;
}

/* ===== SETTINGS ===== */
.settings-section {
	padding: 4rem 0;
	background: #ffffff;
}

.settings-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	padding: 3rem;
	max-width: 800px;
	margin: 0 auto;
}

.settings-group {
	margin-bottom: 3rem;
}

.settings-subtitle {
	font-size: 1.3rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 1.5rem;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #fafafa;
	border: 1px solid #f0f0f0;
}

.checkbox-input {
	margin: 0;
}

.checkbox-label {
	color: #000000;
	font-weight: 400;
	margin: 0;
	cursor: pointer;
}

.settings-actions {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #f0f0f0;
}

/* ===== MODALS ===== */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border: 1px solid #e0e0e0;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid #f0f0f0;
}

.modal-title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #000000;
	margin: 0;
}

.modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #666666;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-body {
	padding: 2rem;
}

.modal-description {
	color: #666666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.modal-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
	.profile-hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.profile-stats {
		justify-content: center;
	}

	.actions-grid {
		grid-template-columns: 1fr;
	}

	.wishlists-grid {
		grid-template-columns: 1fr;
	}

	.friends-grid {
		grid-template-columns: 1fr;
	}

	.invitations-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.page-title {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.profile-name {
		font-size: 2rem;
	}

	.profile-stats {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.action-card {
		flex-direction: column;
		text-align: center;
	}

	.section-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.input-with-button {
		flex-direction: column;
	}

	.invitation-card {
		flex-direction: column;
		text-align: center;
	}

	.question-header {
		flex-direction: column;
		gap: 1rem;
	}

	.modal-content {
		width: 95%;
	}

	.empty-actions {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.page-header {
		padding: 3rem 1rem;
		padding-top: 5rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.profile-hero {
		padding: 3rem 1rem;
		padding-top: 5rem;
	}

	.section-container {
		padding: 0 1rem;
	}

	.action-card,
	.wishlist-card,
	.friend-card,
	.question-card,
	.settings-card,
	.invite-card,
	.section-card {
		padding: 2rem 1.5rem;
	}

	.profile-avatar {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.friend-avatar {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
}
