/* Shared catalogue styles for Products & Accessories listing pages */
.cat-page {
    font-family: "Inter", sans-serif;
    color: #64748b;
    overflow-x: hidden;
}
.cat-page *, .cat-page *::before, .cat-page *::after { box-sizing: border-box; }
.cat-page img { max-width: 100%; }

/* Hero / breadcrumb */
.cat-hero {
    background: linear-gradient(169deg, #eff6ff 0%, #e6fbff 100%);
    padding: 60px 20px 68px;
}
.cat-hero-inner { max-width: 1280px; margin: 0 auto; }
.cat-crumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: #64748b; margin-bottom: 16px;
}
.cat-crumb a { color: #2e6fe6; text-decoration: none; }
.cat-crumb a:hover { text-decoration: underline; }
.cat-crumb .sep { color: #94a3b8; }
.cat-crumb .current { color: #2a3441; font-weight: 600; }
.cat-hero h1 {
    margin: 0 0 12px; font-size: 44px; font-weight: 800; line-height: 1.1;
    letter-spacing: -1.2px; color: #1f2938;
}
.cat-hero p { margin: 0; max-width: 680px; font-size: 16px; line-height: 1.7; color: #64748b; }

/* Category section */
.cat-section { padding: 64px 20px; }
.cat-section--alt { background: #f8fafc; }
.cat-section-inner { max-width: 1280px; margin: 0 auto; }
.cat-eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: #2e6fe6; margin-bottom: 12px;
}
.cat-eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, #2e6fe6, #19b6d8); }
.cat-heading { margin: 0 0 10px; font-size: 30px; font-weight: 800; letter-spacing: -0.8px; color: #1f2938; }
.cat-sub { margin: 0 0 36px; max-width: 760px; font-size: 15.5px; line-height: 1.7; color: #64748b; }

/* Card grid */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cat-card {
    display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
    padding: 18px; background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
    box-shadow: 0 10px 28px rgba(42, 52, 65, 0.05); text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/* Beat the Elementor kit's global `a { text-decoration: underline }` (0,1,1). */
.cat-page a.cat-card,
.cat-page a.cat-card:hover,
.cat-page a.cat-card h3,
.cat-page a.cat-cta-btn { text-decoration: none; }
a.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(46, 111, 230, 0.14); border-color: #cfe0fb; }
.cat-card-media {
    width: 100%; height: 210px; background: linear-gradient(160deg, #f4f8ff, #eef6fb);
    border: 1px solid #e8eef6; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; padding: 16px;
}
.cat-card-media img { max-height: 178px; height: auto; object-fit: contain; display: block; }
.cat-card-media--icon { font-size: 40px; color: #2e6fe6; }
.cat-card-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; color: #2e6fe6; background: rgba(46, 111, 230, 0.10);
    border-radius: 999px; padding: 5px 12px;
}
.cat-card h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.25; color: #1f2938; }
.cat-card p { margin: 0; font-size: 13.5px; line-height: 1.55; color: #64748b; }
.cat-card-link {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    color: #2e6fe6; font-weight: 700; font-size: 13px; padding-top: 4px;
}
.cat-card-link .arrow { transition: transform 0.2s ease; }
a.cat-card:hover .cat-card-link .arrow { transform: translateX(3px); }

/* CTA */
.cat-cta-wrap { padding: 8px 20px 90px; }
.cat-cta {
    max-width: 1280px; margin: 0 auto;
    background: linear-gradient(120deg, #2e6fe6 0%, #19b6d8 100%);
    border-radius: 24px; padding: 44px 52px;
    display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cat-cta h2 { margin: 0 0 6px; font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.cat-cta p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.9); }
.cat-cta-btn {
    display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1f2938;
    padding: 15px 28px; border-radius: 14px; font-size: 15px; font-weight: 700;
    text-decoration: none; white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

/* Responsive */
@media (max-width: 1199px) {
    .cat-grid, .cat-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .cat-grid, .cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .cat-hero h1 { font-size: 38px; }
    .cat-section { padding: 52px 20px; }
}
@media (max-width: 767px) {
    .cat-grid, .cat-grid--4 { grid-template-columns: 1fr; }
    .cat-hero { padding: 46px 16px 50px; }
    .cat-hero h1 { font-size: 30px; letter-spacing: -1px; }
    .cat-section { padding: 44px 16px; }
    .cat-heading { font-size: 25px; }
    .cat-cta-wrap { padding: 0 16px 60px; }
    .cat-cta { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
    .cat-cta-btn { width: 100%; justify-content: center; }
}

/* ---------- Content / article pages (Quality Policy, Privacy, Terms, Careers, Sitemap, Why Choose Us) ---------- */
.cat-article { max-width: 900px; margin: 0; }
.cat-article h2 { font-size: 26px; font-weight: 800; color: #1f2938; letter-spacing: -0.5px; margin: 38px 0 14px; }
.cat-article h2:first-child { margin-top: 0; }
.cat-article p { font-size: 16px; line-height: 1.75; color: #475569; margin: 0 0 18px; }
.cat-article ul.cat-check { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cat-article ul.cat-check li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.6; color: #334155; }
.cat-article ul.cat-check li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #2e6fe6; position: absolute; left: 0; top: 2px; }

/* Feature cards (Why Choose Us) */
.cat-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-feature { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 26px 24px; box-shadow: 0 10px 28px rgba(42,52,65,0.05); }
.cat-feature-icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(46,111,230,0.10); color: #2e6fe6; font-size: 20px; margin-bottom: 16px; }
.cat-feature h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #1f2938; }
.cat-feature p { margin: 0; font-size: 14px; line-height: 1.6; color: #64748b; }

/* Job cards (Careers) */
.cat-jobs { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0; }
.cat-job { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px 28px; }
.cat-job-info h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: #1f2938; }
.cat-job-info p { margin: 0; font-size: 14px; line-height: 1.6; color: #64748b; max-width: 620px; }
.cat-job .cat-job-btn { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: linear-gradient(90deg,#2e6fe6,#19b6d8); color: #fff !important; padding: 12px 22px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none !important; }

/* Sitemap link columns */
.cat-sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-sitemap-col h3 { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #2e6fe6; }
.cat-sitemap-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cat-sitemap-col a { color: #475569; text-decoration: none !important; font-size: 15px; }
.cat-sitemap-col a:hover { color: #2e6fe6; }

@media (max-width: 991px) {
    .cat-features, .cat-sitemap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .cat-features, .cat-sitemap { grid-template-columns: 1fr; }
    .cat-job { flex-direction: column; align-items: flex-start; }
    .cat-job .cat-job-btn { width: 100%; justify-content: center; }
}

/* Beat the Elementor kit heading typography on .cat-page content pages (kit `.elementor-kit-7 hX` = (0,1,1)) */
.cat-page .cat-hero h1 { font-size: 44px; color: #1f2938; }
.cat-page .cat-heading { font-size: 30px; color: #1f2938; }
.cat-page .cat-article h2 { font-size: 26px; color: #1f2938; }
.cat-page .cat-cta h2 { font-size: 26px; color: #fff; }
.cat-page .cat-feature h3 { font-size: 18px; color: #1f2938; }
.cat-page .cat-job-info h3 { font-size: 18px; color: #1f2938; }
.cat-page .cat-sitemap-col h3 { font-size: 13px; color: #2e6fe6; }
.cat-page .cat-card h3 { font-size: 18px; color: #1f2938; }
@media (max-width: 767px) {
    .cat-page .cat-hero h1 { font-size: 30px; }
    .cat-page .cat-heading { font-size: 25px; }
}

/* ---------- Gallery page ---------- */
.pg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-page .pg-item {
    display: block; position: relative; overflow: hidden; border-radius: 14px;
    aspect-ratio: 4 / 3; border: 1px solid #e2e8f0;
    background: linear-gradient(160deg,#f4f8ff,#eef6fb); cursor: zoom-in; text-decoration: none !important;
}
.cat-page .pg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.cat-page .pg-item:hover img { transform: scale(1.06); }
.cat-page .pg-item::after {
    content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 20px; color: #fff;
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(31,41,56,0.32); opacity: 0; transition: opacity .25s ease;
}
.cat-page .pg-item:hover::after { opacity: 1; }
.cat-page .pg-cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
    padding: 22px 14px 12px; font-size: 12.5px; font-weight: 600; color: #fff;
    background: linear-gradient(to top, rgba(31,41,56,0.72), transparent);
}
@media (max-width: 991px) { .pg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
