/* ==========================================================================
   Futurio Child - Mejores Contenedores
   Custom CSS
   ========================================================================== */

:root {
	--fc-blue-900: #1F3A5F;
	--fc-blue-500: #3A6EA5;
	--fc-gray-900: #2C2C2C;
	--fc-gray-500: #9CA3AF;
	--fc-gray-100: #F1F3F5;
	--fc-white:    #F8FAFC;
	--fc-radius:   8px;
	--fc-container: 1200px;
	--fc-font:     "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ------ Base ------ */
.fc-home, .fc-shop, .fc-product, .fc-post {
	font-family: var(--fc-font);
	color: var(--fc-gray-900);
	background: var(--fc-white);
}

.mc-img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ------ Botones ------ */
.fc-btn {
	display: inline-block;
	padding: .75rem 1.5rem;
	border-radius: var(--fc-radius);
	font-weight: 600;
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s;
	border: 2px solid transparent;
}
.fc-btn--primary {
	background: var(--fc-blue-900);
	color: var(--fc-white);
}
.fc-btn--primary:hover { background: var(--fc-blue-500); }

.fc-btn--ghost {
	background: transparent;
	color: var(--fc-blue-900);
	border-color: var(--fc-blue-900);
}
.fc-btn--ghost:hover {
	background: var(--fc-blue-900);
	color: var(--fc-white);
}

/* ------ Hero ------ */
.fc-hero {
	position: relative;
	overflow: hidden;
	min-height: 540px;
}
.fc-hero__media img {
	width: 100%;
	height: 540px;
	object-fit: cover;
}
.fc-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem 6vw;
	color: var(--fc-white);
	background: linear-gradient(90deg, rgba(31,58,95,.7) 0%, rgba(31,58,95,.3) 60%, transparent 100%);
}
.fc-hero__title {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: 760px;
}
.fc-hero__lead {
	font-size: 1.125rem;
	max-width: 560px;
	margin: 0 0 1.5rem;
}
.fc-hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ------ Categorías home ------ */
.fc-cats {
	max-width: var(--fc-container);
	margin: 4rem auto;
	padding: 0 1rem;
}
.fc-cats__title {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--fc-blue-900);
}
.fc-cats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
	list-style: none;
	padding: 0;
}
.fc-cats__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
	border-radius: var(--fc-radius);
	overflow: hidden;
	transition: transform .2s;
}
.fc-cats__link:hover { transform: translateY(-4px); }
.fc-cats__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.fc-cats__label {
	position: absolute;
	left: 1rem; bottom: 1rem;
	padding: .4rem .8rem;
	background: var(--fc-blue-900);
	color: var(--fc-white);
	border-radius: 4px;
	font-weight: 600;
}

/* ------ Archive Product ------ */
.fc-archive-product__hero {
	position: relative;
	margin-bottom: 2rem;
}
.fc-archive-product__hero img {
	width: 100%;
	height: clamp(260px, 40vw, 460px);
	object-fit: cover;
}
.fc-archive-product__hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem 6vw;
	color: var(--fc-white);
	background: linear-gradient(180deg, rgba(31,58,95,.2) 0%, rgba(31,58,95,.7) 100%);
}
.fc-archive-product__title { font-size: clamp(1.6rem, 3vw, 2.5rem); margin: 0 0 .5rem; }
.fc-archive-product__desc  { max-width: 640px; }

.fc-archive-product__main {
	max-width: var(--fc-container);
	margin: 0 auto 3rem;
	padding: 0 1rem;
}

.fc-archive-product__sec {
	max-width: var(--fc-container);
	margin: 0 auto 4rem;
	padding: 0 1rem;
}
.fc-archive-product__sec img {
	width: 100%;
	border-radius: var(--fc-radius);
}

/* ------ Single Product ------ */
.fc-single-product {
	max-width: var(--fc-container);
	margin: 2rem auto 4rem;
	padding: 0 1rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2rem;
}
@media (max-width: 900px) {
	.fc-single-product { grid-template-columns: 1fr; }
}
.fc-single-product__main-img img {
	width: 100%;
	border-radius: var(--fc-radius);
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.fc-single-product__thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1rem;
}
.fc-single-product__thumbs img {
	width: 100%;
	border-radius: var(--fc-radius);
}
.fc-single-product__title {
	font-size: clamp(1.5rem, 2.4vw, 2.25rem);
	color: var(--fc-blue-900);
	margin-top: 0;
}
.fc-single-product__price {
	font-size: 1.5rem;
	color: var(--fc-blue-500);
	font-weight: 700;
}
.fc-single-product__desc h2,
.fc-single-product__desc h3 {
	color: var(--fc-blue-900);
}

/* ------ Blog featured ------ */
.fc-blog-featured {
	margin: 0 0 1.5rem;
}
.fc-blog-featured img {
	width: 100%;
	border-radius: var(--fc-radius);
}
.fc-blog-featured__caption {
	font-size: .9rem;
	color: var(--fc-gray-500);
	padding: .5rem 0;
}

/* ------ Utilidades ------ */
.fc-container {
	max-width: var(--fc-container);
	margin: 0 auto;
	padding: 0 1rem;
}
.fc-sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
