/* =====================================================
   ZebiTek IT — home.css
   Hero, category grid, featured products, trust strip.
   ===================================================== */

.zt-section { padding: 60px 0; }
.zt-section-title { font-size: 26px; margin: 0 0 30px; }
.zt-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.zt-section-header .zt-section-title { margin-bottom: 0; }
.zt-section-link { font-weight: 600; font-size: 14px; white-space: nowrap; }
.zt-empty-state { color: var(--zt-text-light); text-align: center; padding: 40px 0; }

/* ---------- Hero Slideshow ---------- */
.zt-hero-slideshow {
	position: relative;
	overflow: hidden;
	min-height: 460px;
}

.zt-hero-slide {
	position: absolute;
	inset: 0;
	background-color: var(--zt-primary-dark);
	background-image: linear-gradient(135deg, var(--zt-primary-dark) 0%, var(--zt-primary) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease;
	z-index: 1;
}
.zt-hero-slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Darken background images slightly so white text stays readable */
.zt-hero-slide[style*="background-image"]::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 0;
}

.zt-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 40px;
	padding: 80px 20px;
	min-height: 460px;
}
.zt-hero-eyebrow {
	display: inline-block;
	background: var(--zt-accent);
	color: #111;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}
.zt-hero-title {
	font-size: 44px;
	line-height: 1.15;
	margin: 0 0 18px;
	font-weight: 800;
}
.zt-hero-subtitle {
	font-size: 17px;
	opacity: 0.9;
	max-width: 480px;
	margin-bottom: 28px;
}
.zt-hero-cta {
	background: var(--zt-accent);
	color: #111;
	padding: 14px 32px;
	font-size: 15px;
}
.zt-hero-cta:hover { background: var(--zt-accent-dark); color: #111; }

.zt-hero-visual { display: flex; align-items: center; justify-content: center; }
.zt-hero-visual-shape {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	position: relative;
}
.zt-hero-visual-shape::before {
	content: '';
	position: absolute;
	inset: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
}
.zt-hero-visual-shape::after {
	content: '\1F4F1';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 90px;
}

/* Dots navigation */
.zt-hero-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}
.zt-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: var(--zt-transition);
}
.zt-hero-dot.is-active { background: var(--zt-accent); width: 26px; border-radius: 5px; }

/* Prev/Next arrows */
.zt-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
	color: #fff;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--zt-transition);
}
.zt-hero-arrow:hover { background: var(--zt-accent); color: #111; }
.zt-hero-arrow-prev { left: 20px; }
.zt-hero-arrow-next { right: 20px; }


/* ---------- Category Carousel ---------- */
.zt-category-carousel {
	position: relative;
	overflow: hidden;
}
.zt-category-track {
	display: flex;
	gap: 18px;
	transition: transform 0.5s ease;
	will-change: transform;
}
.zt-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--zt-bg-soft);
	border-radius: var(--zt-radius);
	padding: 24px 12px;
	transition: var(--zt-transition);
	color: var(--zt-text);
	flex: 0 0 calc((100% - (5 * 18px)) / 6);
	min-width: calc((100% - (5 * 18px)) / 6);
	box-sizing: border-box;
}
.zt-category-card:hover { background: #fff; box-shadow: var(--zt-shadow-hover); transform: translateY(-3px); color: var(--zt-text); }
.zt-category-icon {
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	font-size: 26px;
	overflow: hidden;
	flex-shrink: 0;
}
.zt-category-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.zt-category-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.zt-category-count { font-size: 12px; color: var(--zt-text-light); }

.zt-category-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--zt-border);
	box-shadow: var(--zt-shadow-hover);
	color: var(--zt-text);
	font-size: 20px;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--zt-transition);
}
.zt-category-arrow:hover { background: var(--zt-accent); color: #111; }
.zt-category-arrow-prev { left: -10px; }
.zt-category-arrow-next { right: -10px; }

/* ---------- Featured Products ---------- */
.zt-featured-products { background: var(--zt-bg-soft); }
.zt-new-arrivals { background: #fff; }

/* ---------- Promo Banner ---------- */
.zt-promo-banner { background: #fff; }
.zt-promo-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	background: var(--zt-bg-soft);
	border-radius: 16px;
	padding: 36px 48px;
	max-width: 100%;
	box-sizing: border-box;
}
.zt-promo-image {
	width: 320px;
	max-width: 100%;
	height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.zt-promo-image img { width: 100%; height: 100%; object-fit: contain; }
.zt-promo-image-placeholder { font-size: 64px; opacity: 0.3; }

.zt-promo-content { min-width: 0; }
.zt-promo-eyebrow {
	display: block;
	font-size: 13px;
	color: var(--zt-text-light);
	margin-bottom: 6px;
}
.zt-promo-title {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 8px;
	line-height: 1.25;
}
.zt-promo-tagline {
	font-size: 16px;
	color: var(--zt-primary);
	font-style: italic;
	margin: 0;
}

.zt-promo-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: var(--zt-accent);
	color: #111;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
	flex-shrink: 0;
	transition: var(--zt-transition);
}
.zt-promo-cta:hover { background: var(--zt-accent-dark); color: #111; transform: scale(1.05); }
.zt-promo-cta-arrow { font-size: 16px; line-height: 1; }

/* ---------- Trust Strip ---------- */
.zt-trust-strip { background: #fff; border-top: 1px solid var(--zt-border); border-bottom: 1px solid var(--zt-border); padding: 40px 0; }
.zt-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.zt-trust-item { display: flex; align-items: center; gap: 14px; }
.zt-trust-icon { font-size: 30px; flex-shrink: 0; }
.zt-trust-item h3 { font-size: 15px; margin: 0 0 2px; }
.zt-trust-item p { font-size: 13px; color: var(--zt-text-light); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
	.zt-hero-title { font-size: 34px; }
	.zt-category-card {
		flex: 0 0 calc((100% - (2 * 18px)) / 3);
		min-width: calc((100% - (2 * 18px)) / 3);
	}
	.zt-trust-grid { grid-template-columns: repeat(2, 1fr); }
	.zt-promo-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
	.zt-promo-image { margin: 0 auto; }
	.zt-promo-cta { margin: 0 auto; }
}

@media (max-width: 768px) {
	.zt-hero-inner { grid-template-columns: 1fr; padding: 50px 20px; text-align: center; }
	.zt-hero-subtitle { margin-left: auto; margin-right: auto; }
	.zt-hero-visual { display: none; }
	.zt-category-card {
		flex: 0 0 calc((100% - 14px) / 2);
		min-width: calc((100% - 14px) / 2);
	}
	.zt-category-track { gap: 14px; }
	.zt-section { padding: 40px 0; }
	.zt-hero-arrow { width: 34px; height: 34px; font-size: 18px; }
	.zt-hero-arrow-prev { left: 10px; }
	.zt-hero-arrow-next { right: 10px; }
	.zt-promo-card { padding: 24px; gap: 20px; }
	.zt-promo-image { width: 220px; height: 158px; }
	.zt-promo-title { font-size: 21px; }
	.zt-promo-cta { width: 76px; height: 76px; font-size: 11px; }
	.zt-category-arrow { display: none; }
}

@media (max-width: 480px) {
	.zt-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.zt-trust-item { flex-direction: column; text-align: center; gap: 6px; }
	.zt-trust-icon { font-size: 24px; }
	.zt-trust-item h3 { font-size: 13px; }
	.zt-trust-item p { font-size: 11px; }
	.zt-hero-title { font-size: 28px; }
	.zt-hero-arrow { display: none; }
}
.zt-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    list-style:none;
    padding:0;
    margin:0;
}

.zt-products-grid li.product{
    list-style:none;
    border:1px solid #e5e7eb;
    border-radius:8px;
    background:#fff;
    overflow:hidden;
}

.zt-products-grid .zt-product-card-link{
    padding:15px;
    display:block;
}

.zt-products-grid .zt-product-title{
    min-height:48px;
    line-height:1.5;
}
