/* =========================================================================
 * CCW Products Grid — luxury product / upcoming-deck cards.
 * ===================================================================== */

.ccw-shop { position: relative; width: 100%; overflow: hidden; }
.ccw-shop::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.ccw-shop__inner { position: relative; z-index: 1; margin: 0 auto; padding-block: var(--ccw-space-8); }

/* ---- Header ---- */
.ccw-shop__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.ccw-shop__eyebrow { font-family: var(--ccw-font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ccw-rose-deep); }
.ccw-shop__title { font-family: var(--ccw-font-display); font-size: var(--ccw-fs-h2); line-height: 1.15; color: var(--ccw-heading); margin: 0; }
.ccw-shop__intro { max-width: 640px; font-size: var(--ccw-fs-body); line-height: var(--ccw-lh-body); color: var(--ccw-text); }
.ccw-shop__intro p { margin: 0; }

/* ---- Grid + card ---- */
.ccw-shop__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 48px; align-items: stretch; }

.ccw-shop__item {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.7);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 18px;
	box-shadow: 0 16px 36px rgba(42, 30, 44, 0.08);
	transition: transform 0.3s var(--ccw-ease-out), box-shadow 0.3s ease;
}
.ccw-shop__item:hover { transform: translateY(-5px); box-shadow: 0 26px 52px rgba(42, 30, 44, 0.16); }

.ccw-shop__thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ccw-blush); border-radius: 18px 18px 0 0; }
.ccw-shop__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ccw-ease-out); }
.ccw-shop__item:hover .ccw-shop__thumb img { transform: scale(1.05); }

.ccw-shop__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 5px 14px;
	font-family: var(--ccw-font-body);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ccw-rose-deep);
	border-radius: 50px;
	box-shadow: 0 5px 14px rgba(192, 57, 122, 0.3);
}

.ccw-shop__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 24px; flex: 1 1 auto; }
.ccw-shop__name { font-family: var(--ccw-font-display); font-size: 1.2rem; line-height: 1.25; color: var(--ccw-heading); margin: 0; }
.ccw-shop__text { font-size: 0.92rem; line-height: 1.5; color: #5A4F58; margin: 0; }
.ccw-shop__price { font-family: var(--ccw-font-display); font-size: 1.4rem; line-height: 1; color: var(--ccw-rose-deep); margin-top: 2px; }

.ccw-shop__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 11px 22px;
	font-family: var(--ccw-font-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ccw-rose-deep);
	border-radius: var(--ccw-radius-pill);
	cursor: pointer;
	transition: var(--ccw-transition);
}
.ccw-shop__btn:hover { color: #fff; background: #A32E66; transform: translateY(-2px); }

/* ---- Coming soon ---- */
.ccw-shop__item--soon .ccw-shop__thumb img { filter: grayscale(0.25) saturate(0.85); opacity: 0.9; }
.ccw-shop__item--soon .ccw-shop__price { color: var(--ccw-text-muted); font-family: var(--ccw-font-body); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ccw-shop__item--soon .ccw-shop__btn { color: var(--ccw-rose-deep); background: transparent; border: 2px solid var(--ccw-gold); }
.ccw-shop__item--soon .ccw-shop__btn:hover { color: #fff; background: var(--ccw-gold); }

@media (max-width: 1024px) { .ccw-shop__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ccw-shop__grid { grid-template-columns: 1fr; } }
