/* TubeDecoded Affiliate Products - frontend styles */

.td-aff-grid {
	--td-aff-cols: 3;
	display: grid;
	grid-template-columns: repeat(var(--td-aff-cols), 1fr);
	gap: 24px;
	margin: 28px 0;
}

.td-aff-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid #e4e4e4;
	border-radius: 10px;
	padding: 20px 16px 24px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.td-aff-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.td-aff-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #b83232;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.td-aff-image {
	width: 100%;
	max-width: 180px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.td-aff-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 6px;
}

.td-aff-image-placeholder {
	width: 100%;
	height: 100%;
	background: #f2f2f2;
	border-radius: 6px;
}

.td-aff-title {
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 8px;
	font-weight: 700;
}

.td-aff-price {
	font-size: 15px;
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 14px;
}

.td-aff-button {
	display: inline-block;
	width: 100%;
	max-width: 240px;
	padding: 13px 18px;
	margin-top: auto;
	border-radius: 6px;
	background: #c97800;
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	transition: background 0.2s ease;
}

.td-aff-button:hover {
	background: #9f5f00;
	color: #fff !important;
}

/* Responsive: collapse to fewer columns automatically on small screens,
   regardless of the columns value set in the shortcode. */
@media (max-width: 900px) {
	.td-aff-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.td-aff-grid {
		grid-template-columns: 1fr;
	}
}
