/**
 * Frontend — Sección "Descargas" en ficha de producto
 * On-brand: navy + turquesa + Fraunces para título
 */

.tpt-product-files {
	margin: 48px 0 32px;
	font-family: 'Poppins', sans-serif;
}

.tpt-product-files__inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 28px 28px 24px;
	background: #fff;
	border: 1px solid rgba(0, 61, 92, 0.10);
	border-radius: 16px;
	box-shadow: 0 12px 32px -16px rgba(0, 61, 92, 0.18);
}

.tpt-product-files__head {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0, 61, 92, 0.08);
}

.tpt-product-files__title {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 1.65rem;
	color: #003D5C;
	margin: 0 0 4px;
	line-height: 1.2;
}

.tpt-product-files__sub {
	font-size: 14px;
	line-height: 1.5;
	color: #6b7280;
	margin: 0;
}

.tpt-product-files__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

@media (min-width: 640px) {
	.tpt-product-files__list { grid-template-columns: 1fr 1fr; }
}

.tpt-product-files__item { margin: 0; }

.tpt-product-files__link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: #F8FAFB;
	border: 1px solid rgba(0, 61, 92, 0.08);
	border-radius: 12px;
	text-decoration: none;
	color: #003D5C;
	transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}

.tpt-product-files__link:hover {
	background: #fff;
	border-color: #00BCD4;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -12px rgba(0, 188, 212, 0.45);
}

.tpt-product-files__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #E0F7FA;
	color: #003D5C;
	border-radius: 10px;
	transition: background .18s, color .18s;
}

.tpt-product-files__link:hover .tpt-product-files__icon {
	background: #00BCD4;
	color: #fff;
}

.tpt-product-files__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tpt-product-files__label {
	font-weight: 600;
	font-size: 14.5px;
	line-height: 1.3;
	color: #003D5C;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tpt-product-files__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: #6b7280;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.tpt-product-files__ext {
	background: #fff;
	border: 1px solid rgba(0, 61, 92, 0.12);
	padding: 2px 7px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 11px;
	color: #003D5C;
	letter-spacing: 0.04em;
}

.tpt-product-files__size {
	font-variant-numeric: tabular-nums;
}

.tpt-product-files__cta {
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 600;
	color: #00BCD4;
	letter-spacing: 0.02em;
}

.tpt-product-files__link:hover .tpt-product-files__cta {
	color: #003D5C;
}

@media (max-width: 480px) {
	.tpt-product-files {
		margin: 32px 0 24px;
	}
	.tpt-product-files__inner {
		padding: 22px 20px 18px;
		border-radius: 12px;
	}
	.tpt-product-files__title { font-size: 1.4rem; }
	.tpt-product-files__cta { display: none; }
	.tpt-product-files__link { gap: 12px; padding: 12px 14px; }
	.tpt-product-files__icon { width: 38px; height: 38px; }
}
