.custom-text-color {
	color: var(--accent) !important;
}

.store-link-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.avatar {
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 0, 0, 0.1);
	background: transparent;
}

.title {
	font-weight: 700;
	font-size: 1.4rem;
}

.subtitle {
	color: #000000;
	font-size: 0.95rem;
}

.link-item {
	background: #fff;
	border: 0.1rem solid var(--accent);
	border-radius: var(--radius);
	transition:
		transform 0.06s ease,
		box-shadow 0.2s ease;
}

.link-item:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.link-label {
	color: var(--accent);
	font-size: 1.2rem;
	text-align: center;
}

.thumb {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	object-fit: cover;
	background: var(--color-surface-muted);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.thumb-icon {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.5rem;
	background: var(--color-surface-muted);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-wrap {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.social-circle {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0);
	border: 0.1rem solid var(--accent);
	color: var(--accent);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	font-size: 2rem;
	transition:
		transform 0.06s ease,
		box-shadow 0.2s ease;
}

.social-arrow {
	color: #000000;
	font-size: 1.5rem;
	border: none;
}

.social-arrow[disabled] {
	opacity: 0.35;
	pointer-events: none;
	border: none;
}

.phone-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.phone-row .country-select {
	width: 36%; /* espacio para el select de país */
	min-width: 120px;
	max-width: 180px;
}

.phone-row .dial-code {
	width: 24%;
	min-width: 90px;
	max-width: 120px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: var(--color-surface-muted);
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	color: var(--accent);
	font-weight: 600;
}

.phone-row .phone-input {
	flex: 1 1 auto; /* ocupa el resto del espacio y queda a la derecha */
	min-width: 120px;
}

.custom-country-select {
	position: relative;
	display: inline-block;
	width: 36%;
	min-width: 120px;
}

.custom-country-select .country-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
}

.custom-country-select .country-options {
	display: none; /* se muestra con JS */
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 50;
	max-height: 240px;
	overflow: auto;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.custom-country-select .country-option {
	cursor: pointer;
}

.custom-country-select .country-option:hover,
.custom-country-select .country-option:focus {
	background: var(--color-surface-muted);
}

@media (max-width: 576px) {
	.phone-row {
		flex-direction: column;
		gap: 0.5rem;
	}
	.phone-row .country-select,
	.phone-row .dial-code,
	.phone-row .phone-input {
		width: 100%;
		min-width: 0;
		max-width: none;
	}
	.custom-country-select {
		width: 100%;
	}
}

@media (min-width: 577px) {
	/* Estilos para dispositivos medianos */
	.end-md-15r {
		right: 17rem !important;
	}
}

/* opciones pro */
.header-image {
	object-fit: contain;
	border-radius: 0;
	width: 100% !important;
	max-width: 580px;
}
