/* ==========================================================================
   VOC CATALOG WIDGET
   Confy Adult Elementor — Katalog ve Logolar
   ========================================================================== */

/* ── Font Faces ── */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── CSS Variables ── */
.voc-catalog-container {
	--voc-navy-primary: #0f2b48;
	--voc-navy-dark: #0b2341;
	--voc-navy-light: #1b3e64;
	--voc-green-primary: #336a53;
	--voc-blue-primary: #3b82f6;
	--voc-text-dark: #0f1c2c;
	--voc-text-muted: #52637a;
	--voc-radius-pill: 9999px;
	--voc-transition-fast: 0.2s ease;
	--voc-transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	--voc-font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
	--voc-font-serif: 'Playfair Display', Georgia, serif;
}

/* ── Reset ── */
.voc-catalog-container,
.voc-catalog-container * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.voc-catalog-container {
	font-family: var(--voc-font-sans);
	max-width: 1240px;
	margin: 0 auto;
}

/* ==========================================================================
   CATALOG HEADER
   ========================================================================== */
.voc-catalog-header {
	text-align: center;
	margin-bottom: 48px;
}

.voc-catalog-title {
	font-family: var(--voc-font-serif);
	font-size: 3rem;
	font-weight: 700;
	font-style: italic;
	color: var(--voc-navy-primary);
	margin-bottom: 10px;
	line-height: 1.15;
}

.voc-catalog-subtitle {
	font-size: 1.02rem;
	color: var(--voc-text-muted);
	max-width: 650px;
	margin: 0 auto;
}

/* ==========================================================================
   CATALOG GRID & CARDS
   ========================================================================== */
/* 3 Columns Grid */
.voc-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 24px;
	margin-bottom: 42px;
}

.voc-catalog-card {
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(15, 43, 72, 0.08);
	padding: 0 28px 28px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 6px 24px rgba(15, 43, 72, 0.05);
	transition: all var(--voc-transition-normal);
	position: relative;
	overflow: visible;
	cursor: pointer;
}

.voc-catalog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 42px rgba(15, 43, 72, 0.12);
	border-color: rgba(15, 43, 72, 0.18);
}

/* Gradient Background Tints for Cards */
.voc-catalog-card--pdf,
.voc-catalog-card--navy {
	background: linear-gradient(180deg, #ffffff 60%, #f0f5fa 100%);
	border-radius: 24px;
}

.voc-catalog-card--green {
	background: linear-gradient(180deg, #ffffff 60%, #eaf4ed 100%);
	border-radius: 24px;
}

.voc-catalog-card--blue {
	background: linear-gradient(180deg, #ffffff 60%, #edf4fc 100%);
	border-radius: 24px;
}

/* Top Floating Pill Badge */
.voc-catalog-card__tag-wrapper {
	margin-top: -18px;
	margin-bottom: 22px;
	position: relative;
	z-index: 10;
}

.voc-catalog-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 22px;
	border-radius: var(--voc-radius-pill);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.voc-catalog-pill--navy {
	background: var(--voc-navy-primary);
	color: #ffffff;
}

.voc-catalog-pill--green {
	background: #5b9a68; /* Hardcoded green from html theme */
	color: #ffffff;
}

.voc-catalog-pill--blue {
	background: #3b82f6; /* Hardcoded blue from html theme */
	color: #ffffff;
}

/* Card Head Text */
.voc-catalog-card__head {
	margin-bottom: 20px;
}

.voc-catalog-card__title {
	font-family: var(--voc-font-serif);
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--voc-navy-primary);
	margin-bottom: 6px;
}

.voc-catalog-card__desc {
	font-size: 0.88rem;
	color: var(--voc-text-muted);
	line-height: 1.45;
	max-width: 260px;
	margin: 0 auto;
}

/* Image Display */
.voc-catalog-card__img-wrapper {
	width: 100%;
	height: 195px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.voc-catalog-card__img {
	max-height: 185px;
	width: auto;
	object-fit: contain;
	transition: transform var(--voc-transition-fast);
	filter: drop-shadow(0 8px 22px rgba(15, 43, 72, 0.08));
}

.voc-catalog-card:hover .voc-catalog-card__img {
	transform: scale(1.05);
}

.voc-catalog-card__img--logo {
	max-height: 125px;
}

.voc-catalog-card__img--shield {
	max-height: 155px;
}

/* Card Footer Button */
.voc-catalog-card__footer {
	width: 100%;
	margin-top: auto;
}

.voc-catalog-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--voc-radius-pill);
	font-family: var(--voc-font-sans);
	font-size: 0.9rem;
	font-weight: 700;
	transition: all var(--voc-transition-fast);
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.voc-catalog-btn--navy {
	background: var(--voc-navy-dark);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(11, 35, 65, 0.2);
}

.voc-catalog-card:hover .voc-catalog-btn--navy {
	background: var(--voc-navy-light);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(11, 35, 65, 0.3);
}

/* ==========================================================================
   BOTTOM INFORMATION STRIP
   ========================================================================== */
/* Bottom Info Strip (3 Pillars) */
.voc-catalog-strip {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 24px 36px;
	box-shadow: 0 4px 20px rgba(15, 43, 72, 0.04);
	border: 1px solid rgba(15, 43, 72, 0.08);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.voc-catalog-strip__item {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}

.voc-catalog-strip__item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -14px;
	top: 15%;
	height: 70%;
	width: 1px;
	background: #e8eef5;
}

.voc-catalog-strip__icon-wrapper {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #f2f6fa;
	border: 1px solid #dce5f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--voc-navy-primary);
	flex-shrink: 0;
}

.voc-catalog-strip__content {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.voc-catalog-strip__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--voc-navy-primary);
	margin-bottom: 2px;
}

.voc-catalog-strip__desc {
	font-size: 0.83rem;
	color: var(--voc-text-muted);
	line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.voc-catalog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 850px) {
	.voc-catalog-strip {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.voc-catalog-strip__item:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 720px) {
	.voc-catalog-grid {
		grid-template-columns: 1fr;
	}

	.voc-catalog-title {
		font-size: 2.2rem;
	}
}
