/**
 * Stack Logo Grid — Elementor Widget Styles
 * Prefix: stklg-
 */

/* ═══════════════════════════════════════════
   BASE — Grid & Column System
═══════════════════════════════════════════ */

.stklg-wrap {
	--stklg-cols: 4;
	display: grid;
	grid-template-columns: repeat(var(--stklg-cols), 1fr);
	gap: 24px;
}

.stklg-cols-2 { --stklg-cols: 2; }
.stklg-cols-3 { --stklg-cols: 3; }
.stklg-cols-4 { --stklg-cols: 4; }
.stklg-cols-5 { --stklg-cols: 5; }
.stklg-cols-6 { --stklg-cols: 6; }

@media (max-width: 1024px) {
	.stklg-tablet-2 { --stklg-cols: 2; }
	.stklg-tablet-3 { --stklg-cols: 3; }
	.stklg-tablet-4 { --stklg-cols: 4; }
}

@media (max-width: 767px) {
	.stklg-mobile-2 { --stklg-cols: 2; }
	.stklg-mobile-3 { --stklg-cols: 3; }
}

/* ═══════════════════════════════════════════
   BASE — Item & Image
═══════════════════════════════════════════ */

.stklg-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	padding: 16px;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-sizing: border-box;
}

.stklg-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.stklg-img {
	max-height: 50px;
	max-width: 70%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.stklg-placeholder {
	font-size: 13px;
	font-weight: 700;
	color: #aaa;
	text-align: center;
}

.stklg-name {
	font-size: 12px;
	font-weight: 600;
	color: #666;
	margin-top: 8px;
	text-align: center;
	transition: color 0.2s ease, opacity 0.2s ease;
}

/* ═══════════════════════════════════════════
   STYLE 01 — Grid (clean, no effects)
═══════════════════════════════════════════ */

.stklg-grid .stklg-item {
	background: #fff;
}
.stklg-grid .stklg-item:hover .stklg-img {
	opacity: 0.75;
}

/* ═══════════════════════════════════════════
   STYLE 02 — Grayscale → Color on hover
═══════════════════════════════════════════ */

.stklg-grayscale .stklg-img {
	filter: grayscale(100%);
	opacity: 0.6;
	transition: filter 0.35s ease, opacity 0.35s ease;
}
.stklg-grayscale .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 03 — Fade Opacity → Full on hover
═══════════════════════════════════════════ */

.stklg-fade .stklg-img {
	opacity: 0.35;
	transition: opacity 0.3s ease;
}
.stklg-fade .stklg-item:hover .stklg-img {
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 04 — Bordered Box
═══════════════════════════════════════════ */

.stklg-bordered .stklg-item {
	border: 1px solid #e0e0e0;
	background: #fff;
	transition: border-color 0.2s ease;
}
.stklg-bordered .stklg-item:hover {
	border-color: #4f46e5;
}
.stklg-bordered .stklg-img {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}
.stklg-bordered .stklg-item:hover .stklg-img {
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 05 — Card (shadow + white bg)
═══════════════════════════════════════════ */

.stklg-card .stklg-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.07);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.stklg-card .stklg-item:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.13);
	transform: translateY(-4px);
}
.stklg-card .stklg-img {
	opacity: 0.75;
	filter: grayscale(40%);
	transition: opacity 0.3s ease, filter 0.3s ease;
}
.stklg-card .stklg-item:hover .stklg-img {
	opacity: 1;
	filter: grayscale(0%);
}

/* ═══════════════════════════════════════════
   STYLE 06 — Pill
═══════════════════════════════════════════ */

.stklg-pill .stklg-item {
	background: #f5f5f5;
	border-radius: 50px;
	padding: 14px 28px;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}
.stklg-pill .stklg-item:hover {
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.stklg-pill .stklg-img {
	filter: grayscale(60%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-pill .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 07 — Circle
═══════════════════════════════════════════ */

.stklg-circle .stklg-item {
	background: #f5f5f5;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	min-height: unset;
	padding: 18px;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}
.stklg-circle .stklg-item:hover {
	background: #fff;
	box-shadow: 0 0 0 3px #4f46e5;
}
.stklg-circle .stklg-img {
	filter: grayscale(80%);
	opacity: 0.6;
	max-width: 55%;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-circle .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 08 — Outlined (transparent fill)
═══════════════════════════════════════════ */

.stklg-outlined .stklg-item {
	background: transparent;
	border: 2px solid transparent;
	transition: border-color 0.2s ease;
}
.stklg-outlined .stklg-item:hover {
	border-color: #4f46e5;
}
.stklg-outlined .stklg-img {
	opacity: 0.5;
	filter: grayscale(100%);
	transition: opacity 0.3s ease, filter 0.3s ease;
}
.stklg-outlined .stklg-item:hover .stklg-img {
	opacity: 1;
	filter: grayscale(0%);
}

/* ═══════════════════════════════════════════
   STYLE 09 — Shadow Lift
═══════════════════════════════════════════ */

.stklg-shadow-lift .stklg-item {
	background: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stklg-shadow-lift .stklg-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}
.stklg-shadow-lift .stklg-img {
	filter: grayscale(70%);
	opacity: 0.6;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-shadow-lift .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 10 — Minimal (no containers)
═══════════════════════════════════════════ */

.stklg-minimal .stklg-item {
	background: transparent;
	padding: 8px;
}
.stklg-minimal .stklg-img {
	filter: grayscale(80%);
	opacity: 0.5;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.stklg-minimal .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   STYLE 11 — Dark Card
═══════════════════════════════════════════ */

.stklg-dark .stklg-item {
	background: #1a1a1a;
	border-radius: 6px;
	transition: background 0.2s ease;
}
.stklg-dark .stklg-item:hover {
	background: #252525;
}
.stklg-dark .stklg-img {
	filter: grayscale(100%) brightness(1.8);
	opacity: 0.5;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-dark .stklg-item:hover .stklg-img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}
.stklg-dark .stklg-name { color: #aaa; }

/* ═══════════════════════════════════════════
   STYLE 12 — Gradient Card
═══════════════════════════════════════════ */

.stklg-gradient .stklg-item {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-radius: 8px;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.stklg-gradient .stklg-item:hover {
	background: linear-gradient(135deg, #ece9ff 0%, #d8d5ff 100%);
	box-shadow: 0 4px 20px rgba(79,70,229,0.2);
}
.stklg-gradient .stklg-img {
	filter: grayscale(50%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-gradient .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 13 — Glassmorphism
═══════════════════════════════════════════ */

.stklg-glass .stklg-item {
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 12px;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}
.stklg-glass .stklg-item:hover {
	background: rgba(255,255,255,0.35);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.stklg-glass .stklg-img {
	filter: grayscale(30%);
	opacity: 0.75;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-glass .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 14 — Neon Glow
═══════════════════════════════════════════ */

.stklg-neon {
	background: #0a0a0a;
	padding: 20px;
}
.stklg-neon .stklg-item {
	border: 1px solid rgba(108,99,255,0.2);
	border-radius: 6px;
	background: #111;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.stklg-neon .stklg-item:hover {
	border-color: #6c63ff;
	box-shadow: 0 0 16px rgba(108,99,255,0.5), inset 0 0 16px rgba(108,99,255,0.07);
}
.stklg-neon .stklg-img {
	filter: grayscale(100%) brightness(2);
	opacity: 0.4;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-neon .stklg-item:hover .stklg-img {
	filter: grayscale(0%) brightness(1.1);
	opacity: 1;
}
.stklg-neon .stklg-name { color: #888; }

/* ═══════════════════════════════════════════
   STYLE 15 — Retro (offset shadow)
═══════════════════════════════════════════ */

.stklg-retro .stklg-item {
	background: #fff;
	border: 2px solid #222;
	box-shadow: 4px 4px 0 #222;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.stklg-retro .stklg-item:hover {
	box-shadow: 2px 2px 0 #222;
	transform: translate(2px, 2px);
}
.stklg-retro .stklg-img {
	filter: grayscale(60%);
	opacity: 0.7;
	transition: filter 0.25s ease, opacity 0.25s ease;
}
.stklg-retro .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 16 — Tilt Hover
═══════════════════════════════════════════ */

.stklg-tilt .stklg-item {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stklg-tilt .stklg-item:nth-child(odd):hover {
	transform: rotate(-3deg) scale(1.05);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.stklg-tilt .stklg-item:nth-child(even):hover {
	transform: rotate(3deg) scale(1.05);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.stklg-tilt .stklg-img {
	filter: grayscale(50%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-tilt .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 17 — Scale Hover
═══════════════════════════════════════════ */

.stklg-scale .stklg-item {
	background: #fff;
	transition: none;
}
.stklg-scale .stklg-img {
	filter: grayscale(70%);
	opacity: 0.5;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.stklg-scale .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.15);
}

/* ═══════════════════════════════════════════
   STYLE 18 — Magazine (left border accent)
═══════════════════════════════════════════ */

.stklg-magazine .stklg-item {
	background: #fff;
	border-left: 3px solid #e0e0e0;
	padding-left: 20px;
	transition: border-color 0.2s ease;
}
.stklg-magazine .stklg-item:hover {
	border-left-color: #4f46e5;
}
.stklg-magazine .stklg-img {
	filter: grayscale(60%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-magazine .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 19 — Ticker Scroll (CSS marquee)
═══════════════════════════════════════════ */

.stklg-ticker {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}

.stklg-ticker-track {
	display: inline-flex;
	align-items: center;
	gap: 48px;
	animation: stklg-ticker-scroll 30s linear infinite;
	white-space: nowrap;
}

.stklg-ticker:hover .stklg-ticker-track {
	animation-play-state: paused;
}

@keyframes stklg-ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.stklg-ticker .stklg-item {
	display: inline-flex;
	flex-shrink: 0;
	background: transparent;
	padding: 12px 0;
	min-height: unset;
	transition: opacity 0.2s ease;
}
.stklg-ticker .stklg-item:hover {
	opacity: 0.8;
}
.stklg-ticker .stklg-img {
	max-height: 40px;
	filter: grayscale(80%);
	opacity: 0.6;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-ticker .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 20 — Large / Small alternating
═══════════════════════════════════════════ */

.stklg-large-small .stklg-img {
	filter: grayscale(60%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-large-small .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}
.stklg-large-small .stklg-item:nth-child(odd) .stklg-img {
	max-height: 60px;
}
.stklg-large-small .stklg-item:nth-child(even) .stklg-img {
	max-height: 34px;
}
.stklg-large-small .stklg-item {
	background: #fff;
}

/* ═══════════════════════════════════════════
   STYLE 21 — Scattered (random rotation)
═══════════════════════════════════════════ */

.stklg-scattered .stklg-item {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stklg-scattered .stklg-item:nth-child(5n+1) { transform: rotate(-2.5deg); }
.stklg-scattered .stklg-item:nth-child(5n+2) { transform: rotate(1.8deg);  }
.stklg-scattered .stklg-item:nth-child(5n+3) { transform: rotate(-1.2deg); }
.stklg-scattered .stklg-item:nth-child(5n+4) { transform: rotate(2.4deg);  }
.stklg-scattered .stklg-item:nth-child(5n+5) { transform: rotate(-0.8deg); }
.stklg-scattered .stklg-item:hover {
	transform: rotate(0deg) scale(1.05) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	z-index: 2;
}
.stklg-scattered .stklg-img {
	filter: grayscale(40%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-scattered .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 22 — Overlap Strip
═══════════════════════════════════════════ */

.stklg-overlap {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.stklg-overlap .stklg-item {
	background: #fff;
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	padding: 14px 20px;
	min-height: unset;
	flex-shrink: 0;
	margin-left: -16px;
	transition: transform 0.2s ease, z-index 0s, box-shadow 0.2s ease;
	z-index: 1;
}
.stklg-overlap .stklg-item:first-child {
	margin-left: 0;
}
.stklg-overlap .stklg-item:hover {
	transform: translateY(-4px) scale(1.05);
	z-index: 10;
	box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
.stklg-overlap .stklg-img {
	filter: grayscale(60%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-overlap .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 23 — Mono Tint (single hue filter)
═══════════════════════════════════════════ */

.stklg-mono .stklg-item {
	background: #f0efff;
	border-radius: 6px;
	transition: background 0.2s ease;
}
.stklg-mono .stklg-item:hover {
	background: #e5e3ff;
}
.stklg-mono .stklg-img {
	filter: grayscale(100%) sepia(30%) hue-rotate(220deg) saturate(2);
	opacity: 0.6;
	transition: filter 0.35s ease, opacity 0.35s ease;
}
.stklg-mono .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 24 — Spotlight (dark bg)
═══════════════════════════════════════════ */

.stklg-spotlight {
	background: #111;
	padding: 20px;
}
.stklg-spotlight .stklg-item {
	background: #1a1a1a;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	transition: background 0.2s ease;
}
.stklg-spotlight .stklg-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.stklg-spotlight .stklg-item:hover::before {
	opacity: 1;
}
.stklg-spotlight .stklg-img {
	filter: grayscale(100%) brightness(2);
	opacity: 0.35;
	transition: filter 0.35s ease, opacity 0.35s ease;
}
.stklg-spotlight .stklg-item:hover .stklg-img {
	filter: grayscale(0%) brightness(1.1);
	opacity: 1;
}
.stklg-spotlight .stklg-name { color: #777; }

/* ═══════════════════════════════════════════
   STYLE 25 — Neumorphic
═══════════════════════════════════════════ */

.stklg-neumorphic {
	background: #e8e8e8;
	padding: 24px;
	border-radius: 16px;
}
.stklg-neumorphic .stklg-item {
	background: #e8e8e8;
	border-radius: 12px;
	box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
	transition: box-shadow 0.25s ease;
}
.stklg-neumorphic .stklg-item:hover {
	box-shadow: inset 4px 4px 8px #c5c5c5, inset -4px -4px 8px #ffffff;
}
.stklg-neumorphic .stklg-img {
	filter: grayscale(50%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-neumorphic .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}
.stklg-neumorphic .stklg-name { color: #777; }

/* ═══════════════════════════════════════════
   STYLE 26 — Frosted Glass
═══════════════════════════════════════════ */

.stklg-frosted .stklg-item {
	background: rgba(255,255,255,0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 12px;
	transition: background 0.25s ease;
}
.stklg-frosted .stklg-item:hover {
	background: rgba(255,255,255,0.3);
}
.stklg-frosted .stklg-img {
	filter: grayscale(40%) brightness(1.1);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-frosted .stklg-item:hover .stklg-img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 27 — Bold Frame
═══════════════════════════════════════════ */

.stklg-bold-frame .stklg-item {
	background: #fff;
	border: 3px solid #222;
	box-shadow: 5px 5px 0 #222;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.stklg-bold-frame .stklg-item:hover {
	box-shadow: 3px 3px 0 #4f46e5;
	border-color: #4f46e5;
	transform: translate(2px, 2px);
}
.stklg-bold-frame .stklg-img {
	filter: grayscale(50%);
	opacity: 0.7;
	transition: filter 0.25s ease, opacity 0.25s ease;
}
.stklg-bold-frame .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 28 — Zigzag Rows (alternating margin)
═══════════════════════════════════════════ */

.stklg-zigzag .stklg-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	transition: transform 0.2s ease;
}
.stklg-zigzag .stklg-item:nth-child(odd) {
	transform: translateY(-10px);
}
.stklg-zigzag .stklg-item:nth-child(even) {
	transform: translateY(10px);
}
.stklg-zigzag .stklg-item:hover {
	transform: translateY(-14px) scale(1.04) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.stklg-zigzag .stklg-img {
	filter: grayscale(60%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-zigzag .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 29 — Name Below (always visible)
═══════════════════════════════════════════ */

.stklg-name-below .stklg-item {
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e8e8e8;
	padding: 18px 14px 14px;
	transition: box-shadow 0.2s ease;
}
.stklg-name-below .stklg-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.stklg-name-below .stklg-img {
	filter: grayscale(50%);
	opacity: 0.7;
	margin-bottom: 4px;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-name-below .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}
.stklg-name-below .stklg-name {
	font-size: 11px;
	color: #999;
	margin-top: 8px;
}
.stklg-name-below .stklg-item:hover .stklg-name {
	color: #555;
}

/* ═══════════════════════════════════════════
   STYLE 30 — Name on Hover
═══════════════════════════════════════════ */

.stklg-name-hover .stklg-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
	transition: box-shadow 0.2s ease;
}
.stklg-name-hover .stklg-item:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.stklg-name-hover .stklg-img {
	filter: grayscale(60%);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.stklg-name-hover .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
	transform: translateY(-6px);
}
.stklg-name-hover .stklg-name {
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	font-size: 11px;
	color: #555;
}
.stklg-name-hover .stklg-item:hover .stklg-name {
	opacity: 1;
	transform: translateY(0);
}

/* ═══════════════════════════════════════════
   STYLE 31 — Strip (single row, flex)
═══════════════════════════════════════════ */

.stklg-strip {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	border-top: 1px solid #e8e8e8;
	border-left: 1px solid #e8e8e8;
}
.stklg-strip .stklg-item {
	flex: 1 1 120px;
	border-right: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	background: #fff;
	min-height: 80px;
	transition: background 0.2s ease;
}
.stklg-strip .stklg-item:hover {
	background: #fafafa;
}
.stklg-strip .stklg-img {
	filter: grayscale(70%);
	opacity: 0.55;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-strip .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 32 — Colored Backgrounds
═══════════════════════════════════════════ */

.stklg-colored .stklg-item {
	border-radius: 8px;
	transition: filter 0.2s ease, transform 0.2s ease;
}
.stklg-colored .stklg-item:nth-child(6n+1) { background: #eff6ff; }
.stklg-colored .stklg-item:nth-child(6n+2) { background: #f0fdf4; }
.stklg-colored .stklg-item:nth-child(6n+3) { background: #fef9c3; }
.stklg-colored .stklg-item:nth-child(6n+4) { background: #fdf2f8; }
.stklg-colored .stklg-item:nth-child(6n+5) { background: #fff7ed; }
.stklg-colored .stklg-item:nth-child(6n+6) { background: #f0fdfa; }
.stklg-colored .stklg-item:hover {
	transform: scale(1.04);
	filter: brightness(0.97);
}
.stklg-colored .stklg-img {
	filter: grayscale(20%);
	opacity: 0.8;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-colored .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 33 — Divider Row (separator lines)
═══════════════════════════════════════════ */

.stklg-divider {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
}
.stklg-divider .stklg-item {
	flex: 1 1 100px;
	padding: 16px 20px;
	min-height: 80px;
	background: transparent;
	border-right: 1px solid #e0e0e0;
	transition: opacity 0.2s ease;
}
.stklg-divider .stklg-item:last-child {
	border-right: none;
}
.stklg-divider .stklg-item:hover {
	opacity: 0.85;
}
.stklg-divider .stklg-img {
	filter: grayscale(70%);
	opacity: 0.55;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-divider .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 34 — Stacked Label (logo + separator + name)
═══════════════════════════════════════════ */

.stklg-stacked-label .stklg-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px 14px 14px;
	flex-direction: column;
	gap: 0;
}
.stklg-stacked-label .stklg-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.stklg-stacked-label .stklg-img {
	filter: grayscale(50%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-stacked-label .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}
.stklg-stacked-label .stklg-name {
	width: 100%;
	text-align: center;
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid #eee;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #aaa;
}
.stklg-stacked-label .stklg-item:hover .stklg-name {
	color: #555;
}

/* ═══════════════════════════════════════════
   STYLE 35 — Polaroid
═══════════════════════════════════════════ */

.stklg-polaroid .stklg-item {
	background: #fff;
	padding: 12px 12px 32px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	transform: rotate(-1.5deg);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stklg-polaroid .stklg-item:nth-child(even) {
	transform: rotate(1.2deg);
}
.stklg-polaroid .stklg-item:hover {
	transform: rotate(0deg) scale(1.04) !important;
	box-shadow: 0 8px 28px rgba(0,0,0,0.2);
	z-index: 2;
}
.stklg-polaroid .stklg-img {
	filter: grayscale(30%);
	opacity: 0.85;
	max-height: 60px;
	transition: filter 0.3s ease, opacity 0.3s ease;
}
.stklg-polaroid .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}
.stklg-polaroid .stklg-name {
	font-size: 11px;
	font-family: Georgia, serif;
	color: #888;
	text-align: center;
	margin-top: 8px;
}

/* ═══════════════════════════════════════════
   STYLE 36 — Sticker (playful rotated card)
═══════════════════════════════════════════ */

.stklg-sticker .stklg-item {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 0 -6px rgba(0,0,0,0.05), 0 6px 22px rgba(0,0,0,0.12);
	transform: rotate(-2deg);
}
.stklg-sticker .stklg-item:nth-child(even) {
	transform: rotate(2deg);
}
.stklg-sticker .stklg-item:hover {
	transform: rotate(0) translateY(-2px);
	box-shadow: 0 12px 0 -6px rgba(0,0,0,0.05), 0 10px 30px rgba(0,0,0,0.18);
}
.stklg-sticker .stklg-img {
	max-height: 56px;
	filter: grayscale(25%);
	opacity: 0.9;
}
.stklg-sticker .stklg-item:hover .stklg-img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 37 — Dashed Outline
═══════════════════════════════════════════ */

.stklg-dashed .stklg-item {
	background: #fff;
	border: 2px dashed #e0e0e0;
	border-radius: 12px;
}
.stklg-dashed .stklg-item:hover {
	border-style: solid;
	border-color: #c7c7c7;
	box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
.stklg-dashed .stklg-item:hover .stklg-img {
	transform: scale(1.04);
}

/* ═══════════════════════════════════════════
   STYLE 38 — Focus Hover (accent focus ring)
═══════════════════════════════════════════ */

.stklg-focus .stklg-item {
	background: #fff;
	border-radius: 12px;
}
.stklg-focus .stklg-item::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(66,133,244,0.0);
	transition: box-shadow 0.3s ease;
	pointer-events: none;
}
.stklg-focus .stklg-item:hover::after {
	box-shadow: 0 0 0 3px rgba(66,133,244,0.35), 0 8px 28px rgba(0,0,0,0.14);
}
.stklg-focus .stklg-item:hover .stklg-img {
	transform: scale(1.06);
	opacity: 1;
}

/* ═══════════════════════════════════════════
   STYLE 39 — Checkerboard
═══════════════════════════════════════════ */

.stklg-checker .stklg-item {
	background: #ffffff;
	border-radius: 8px;
}
.stklg-checker .stklg-item:nth-child(odd) {
	background: #fafafa;
}
.stklg-checker .stklg-item:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.stklg-checker .stklg-img {
	opacity: 0.85;
	filter: grayscale(40%);
}
.stklg-checker .stklg-item:hover .stklg-img {
	opacity: 1;
	filter: grayscale(0%);
}

/* ═══════════════════════════════════════════
   STYLE 40 — Gradient Ring Border
═══════════════════════════════════════════ */

.stklg-gradient-ring .stklg-item {
	background: #fff;
	border-radius: 14px;
	padding: 14px;
}
.stklg-gradient-ring .stklg-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, #6a5af9, #00d4ff, #1dd1a1);
}
.stklg-gradient-ring .stklg-item::after {
	content: '';
	position: absolute;
	inset: 2px; /* ring thickness */
	border-radius: inherit;
	background: #fff;
}
.stklg-gradient-ring .stklg-item:hover::before {
	background: linear-gradient(135deg, #ff6a88, #ffb86c, #50fa7b);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 767px) {
	.stklg-overlap {
		flex-wrap: wrap;
		gap: 12px;
	}
	.stklg-overlap .stklg-item {
		margin-left: 0;
	}

	.stklg-divider .stklg-item,
	.stklg-strip .stklg-item {
		flex: 1 1 calc(50% - 1px);
	}

	.stklg-ticker-track {
		animation-duration: 20s;
	}

	.stklg-zigzag .stklg-item:nth-child(odd),
	.stklg-zigzag .stklg-item:nth-child(even) {
		transform: none;
	}
}
