/* Shop Collections — Razzi Child */

.rc-shop-collections {
	padding: 100px 0;
}

.rc-shop-collections__container {
	max-width: var(--container-width);
	margin: 0 auto;
}

.rc-shop-collections__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
	gap: 20px;
	flex-wrap: wrap;
}

.rc-shop-collections__title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0;
	letter-spacing: -0.5px;
}

.rc-shop-collections__link {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rc-shop-collections__link:hover {
	color: var(--color-primary);
}

.rc-shop-collections__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.rc-shop-collections__card {
	position: relative;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.rc-shop-collections__card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rc-shop-collections__card:hover img {
	transform: scale(1.06);
}

.rc-shop-collections__card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 21, 60, 0.9) 0%, rgba(26, 21, 60, 0.4) 50%, transparent 100%);
	z-index: 2;
}

.rc-shop-collections__meta {
	position: relative;
	z-index: 3;
	padding: 32px;
	margin: 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	transition: all 0.3s ease;
}

.rc-shop-collections__card:hover .rc-shop-collections__meta {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

.rc-shop-collections__meta h4 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 8px;
}

.rc-shop-collections__meta p {
	font-family: var(--font-body);
	font-size: 13px;
	color: #dddddd;
	margin: 0 0 20px;
	line-height: 1.5;
}

.rc-shop-collections__btn {
	display: inline-block;
	padding: 10px 24px;
	background-color: #ffffff;
	color: var(--color-primary);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.rc-shop-collections__card:hover .rc-shop-collections__btn {
	background-color: var(--color-secondary-accent);
	color: #ffffff;
}

@media (max-width: 992px) {
	.rc-shop-collections__grid {
		grid-template-columns: 1fr;
	}
}
