/* ============================================================================
   iT Holdings HK — Theme Stylesheet
   Navy / Cobalt B2B corporate theme (matches the React reference build).
   ============================================================================ */

:root {
    --ith-navy: #0A192F;
    --ith-cobalt: #0047AB;
    --ith-blue-mid: #3E7BFF;
    --ith-blue-light: #7BB2FF;
    --ith-white: #ffffff;
    --ith-slate-50: #f8fafc;
    --ith-slate-100: #f1f5f9;
    --ith-slate-200: #e2e8f0;
    --ith-slate-300: #cbd5e1;
    --ith-slate-500: #64748b;
    --ith-slate-600: #475569;
    --ith-slate-700: #334155;
    --ith-slate-800: #1e293b;
    --ith-red: #dc2626;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ith-navy);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .ith-h1, .ith-h2, .ith-h3 {
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    letter-spacing: -0.02em;
    color: var(--ith-navy);
    margin: 0;
}

a { color: var(--ith-cobalt); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ith-navy); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; line-height: 1.7; color: var(--ith-slate-700); }

::selection { background: var(--ith-cobalt); color: #fff; }

/* Layout ------------------------------------------------------------------ */
.ith-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1024px) { .ith-container { padding: 0 2rem; } }

.ith-main { min-height: 60vh; }
.ith-section { padding: 6rem 0; background: #fff; }
.ith-section-alt { background: var(--ith-slate-50); border-top: 1px solid var(--ith-slate-200); border-bottom: 1px solid var(--ith-slate-200); }
.ith-section-dark { background: var(--ith-navy); color: #fff; position: relative; overflow: hidden; }
.ith-section-dark::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.ith-section-dark > * { position: relative; }

.ith-py-lg { padding-top: 5rem; padding-bottom: 5rem; }
.ith-mt-sm { margin-top: 1rem; }
.ith-mt-md { margin-top: 1.5rem; }
.ith-mt-lg { margin-top: 3rem; }
.ith-mb-lg { margin-bottom: 3rem; }
.ith-w-full { width: 100%; text-align: center; justify-content: center; }
.ith-flex-end { display: flex; align-items: flex-end; }
.ith-hide-mobile { display: none; }
@media (min-width: 1024px) { .ith-hide-mobile { display: inline-flex; } }

.ith-grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3rem; }
.ith-col-5 { grid-column: span 12; }
.ith-col-7 { grid-column: span 12; }
@media (min-width: 1024px) {
    .ith-col-5 { grid-column: span 5; }
    .ith-col-7 { grid-column: span 7; }
}

/* Typography helpers ----------------------------------------------------- */
.ith-h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; }
.ith-h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
.ith-h3 { font-size: 1.25rem; font-weight: 700; }
.ith-lead { font-size: 1.125rem; line-height: 1.7; color: var(--ith-slate-600); max-width: 62ch; }

.ith-eyebrow {
    font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-cobalt); font-weight: 700; margin-bottom: 1rem;
}
.ith-eyebrow-light { color: var(--ith-blue-light); }
.ith-eyebrow-sm { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-slate-500); font-weight: 700; }

.ith-text-blue { color: var(--ith-cobalt); }
.ith-text-blue-light { color: var(--ith-blue-light); }
.ith-text-white { color: #fff; }

.ith-prose p { color: var(--ith-slate-700); font-size: 1.0625rem; line-height: 1.75; }
.ith-prose strong { color: var(--ith-navy); }

/* Buttons ---------------------------------------------------------------- */
.ith-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 1.75rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em;
    text-decoration: none; border: 2px solid transparent; cursor: pointer;
    transition: all .2s ease; line-height: 1; white-space: nowrap;
    text-transform: none;
}
.ith-btn:hover { transform: translateY(-2px); }
.ith-btn-primary { background: var(--ith-navy); color: #fff; border-color: var(--ith-navy); }
.ith-btn-primary:hover { background: var(--ith-cobalt); color: #fff; border-color: var(--ith-cobalt); }
.ith-btn-white { background: #fff; color: var(--ith-navy); border-color: #fff; }
.ith-btn-white:hover { background: var(--ith-blue-mid); color: #fff; border-color: var(--ith-blue-mid); }
.ith-btn-outline { background: transparent; color: var(--ith-navy); border: 2px solid var(--ith-navy); }
.ith-btn-outline:hover { background: var(--ith-navy); color: #fff; }
.ith-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.ith-btn-outline-white:hover { background: #fff; color: var(--ith-navy); border-color: #fff; }
.ith-btn-sm { padding: 0.65rem 1.1rem; font-size: 0.8125rem; }
.ith-link-underline {
    font-size: 0.875rem; font-weight: 600; color: var(--ith-cobalt);
    border-bottom: 1px solid var(--ith-cobalt); padding-bottom: 0.25rem;
}
.ith-link-underline:hover { color: var(--ith-navy); border-color: var(--ith-navy); }
.ith-link { color: var(--ith-cobalt); font-weight: 600; }
.ith-link:hover { color: var(--ith-navy); text-decoration: underline; }
.ith-link-white { color: rgba(255,255,255,0.85); }
.ith-link-white:hover { color: #fff; }

/* Header ---------------------------------------------------------------- */
.ith-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ith-slate-200);
}
.ith-header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.ith-brand { display: flex; align-items: center; gap: 0.75rem; }
.ith-brand-mark { width: 2.25rem; height: 2.25rem; background: var(--ith-navy); display: flex; align-items: center; justify-content: center; }
.ith-brand-mark span { color: #fff; font-weight: 900; font-size: 0.875rem; letter-spacing: -0.02em; }
.ith-brand-mark-white { background: #fff; }
.ith-brand-mark-white span { color: var(--ith-navy); }
.ith-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.ith-brand-line1 { font-size: 0.9375rem; font-weight: 700; color: var(--ith-navy); }
.ith-brand-line2 { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-slate-500); }
.ith-brand-inverse .ith-brand-line1 { color: #fff; }
.ith-brand-inverse .ith-brand-line2 { color: rgba(255,255,255,0.6); }

.ith-nav { display: none; }
@media (min-width: 1024px) { .ith-nav { display: block; } }
.ith-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2rem; }
.ith-menu li a { font-size: 0.875rem; font-weight: 500; color: var(--ith-slate-700); }
.ith-menu li.current-menu-item a, .ith-menu li a:hover { color: var(--ith-cobalt); }

.ith-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.ith-cart-btn { position: relative; padding: 0.5rem; color: var(--ith-navy); }
.ith-cart-btn:hover { background: var(--ith-slate-100); }
.ith-cart-btn i { width: 1.25rem; height: 1.25rem; }
.ith-cart-badge {
    position: absolute; top: -2px; right: -2px;
    background: var(--ith-cobalt); color: #fff;
    font-size: 0.625rem; font-weight: 700;
    border-radius: 999px; min-width: 1.15rem; height: 1.15rem;
    display: flex; align-items: center; justify-content: center; padding: 0 0.3rem;
}
.ith-mobile-toggle { display: inline-flex; background: transparent; border: 0; padding: 0.5rem; cursor: pointer; color: var(--ith-navy); }
@media (min-width: 1024px) { .ith-mobile-toggle { display: none; } }

.ith-mobile-panel { border-top: 1px solid var(--ith-slate-200); background: #fff; padding: 1rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ith-mobile-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ith-mobile-menu li a { display: block; padding: 0.75rem 0; font-size: 1rem; font-weight: 500; color: var(--ith-slate-800); border-bottom: 1px solid var(--ith-slate-100); }

/* HERO ------------------------------------------------------------------ */
.ith-hero {
    min-height: 92vh;
    display: flex; align-items: center;
    color: #fff;
    background-color: var(--ith-navy);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.ith-hero::after {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.ith-hero-inner { position: relative; padding: 6rem 0; max-width: 900px; z-index: 2; }
.ith-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ith-blue-light);
    border: 1px solid rgba(62,123,255,0.4);
    background: rgba(0,71,171,0.1);
    padding: 0.375rem 0.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}
.ith-hero-dot { width: 6px; height: 6px; background: var(--ith-blue-mid); border-radius: 999px; animation: ith-pulse 2s ease-in-out infinite; }
@keyframes ith-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.ith-hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05;
    color: #fff; margin: 0 0 1.5rem; max-width: 20ch;
}
.ith-hero-sub { font-size: 1.125rem; color: rgba(226,232,240,0.9); max-width: 640px; line-height: 1.7; margin-bottom: 2.5rem; }
.ith-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.ith-hero-kpis {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
}
@media (min-width: 768px) { .ith-hero-kpis { grid-template-columns: repeat(4, 1fr); } }
.ith-hero-kpi { padding: 1.5rem 1rem 1.5rem 0; border-right: 1px solid rgba(255,255,255,0.1); }
.ith-hero-kpi:last-child { border-right: 0; }
.ith-hero-kpi-k { font-size: 1.875rem; font-weight: 900; color: #fff; }
.ith-hero-kpi-v { font-size: 0.6875rem; color: var(--ith-slate-300); text-transform: uppercase; letter-spacing: 0.18em; margin-top: 0.25rem; }

/* Section head ---------------------------------------------------------- */
.ith-section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }

/* Category grid --------------------------------------------------------- */
.ith-cat-grid {
    display: grid; grid-template-columns: 1fr;
    border: 1px solid var(--ith-slate-200);
    background: #fff;
}
@media (min-width: 768px) { .ith-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ith-cat-grid { grid-template-columns: repeat(3, 1fr); } }
.ith-cat-card {
    padding: 2rem; border-bottom: 1px solid var(--ith-slate-200); border-right: 1px solid var(--ith-slate-200);
    display: flex; flex-direction: column; transition: background .2s ease;
    color: var(--ith-navy);
}
.ith-cat-card:hover { background: var(--ith-navy); color: #fff; }
.ith-cat-card:hover .ith-eyebrow-sm { color: var(--ith-slate-300); }
.ith-cat-card:hover .ith-cat-title { color: #fff; }
.ith-cat-card:hover .ith-cat-cta { color: var(--ith-blue-light); }
.ith-cat-img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; margin-bottom: 1.5rem; background-color: var(--ith-slate-100); }
.ith-cat-body { display: flex; flex-direction: column; gap: 0.5rem; }
.ith-cat-title { font-size: 1.25rem; font-weight: 700; }
.ith-cat-cta { font-size: 0.875rem; font-weight: 600; color: var(--ith-cobalt); margin-top: 0.5rem; }
.ith-cat-card-cta { background: var(--ith-cobalt); color: #fff; }
.ith-cat-card-cta:hover { background: var(--ith-cobalt); color: #fff; }
.ith-cat-card-cta .ith-cat-title-cta { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0.5rem 0 0.75rem; }
.ith-cat-card-cta p { color: rgba(255,255,255,0.85); font-size: 0.875rem; margin-bottom: 1.25rem; }

/* Services grid --------------------------------------------------------- */
.ith-services-grid {
    display: grid; grid-template-columns: 1fr;
    border: 1px solid var(--ith-slate-200);
}
@media (min-width: 768px) { .ith-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ith-services-grid { grid-template-columns: repeat(3, 1fr); } }
.ith-service-card {
    padding: 2rem;
    border-right: 1px solid var(--ith-slate-200);
    border-bottom: 1px solid var(--ith-slate-200);
    transition: background .2s ease;
}
.ith-service-card:hover { background: var(--ith-slate-50); }
.ith-service-icon {
    width: 2.75rem; height: 2.75rem; background: var(--ith-navy);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    color: #fff;
}
.ith-service-icon i { width: 1.25rem; height: 1.25rem; }
.ith-service-title { font-size: 1.0625rem; font-weight: 700; color: var(--ith-navy); margin-bottom: 0.75rem; }
.ith-service-card p { font-size: 0.875rem; color: var(--ith-slate-600); margin: 0; }

/* Countries ------------------------------------------------------------- */
.ith-countries-grid {
    display: grid; grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 3.5rem;
}
@media (min-width: 768px) { .ith-countries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ith-countries-grid { grid-template-columns: repeat(4, 1fr); } }
.ith-country { padding: 2rem; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); transition: background .2s ease; }
.ith-country:hover { background: rgba(255,255,255,0.05); }
.ith-country-code { font-size: 4rem; font-weight: 900; color: rgba(62,123,255,0.2); margin-bottom: 1rem; line-height: 1; }
.ith-country-name { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.ith-country-role { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-slate-500); }

/* Country large tiles (Global Reach page) ------------------------------ */
.ith-country-grid-large {
    display: grid; grid-template-columns: 1fr; border: 1px solid var(--ith-slate-200);
}
@media (min-width: 768px) { .ith-country-grid-large { grid-template-columns: repeat(2, 1fr); } }
.ith-country-large {
    padding: 2.5rem; border-right: 1px solid var(--ith-slate-200); border-bottom: 1px solid var(--ith-slate-200);
    transition: background .2s ease;
}
.ith-country-large:hover { background: var(--ith-slate-50); }
.ith-country-large-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.ith-country-code-large { font-size: 5rem; font-weight: 900; color: rgba(0,71,171,0.1); line-height: 1; }
.ith-country-role-tag { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-slate-500); font-weight: 600; }
.ith-country-name-large { font-size: 1.5rem; font-weight: 700; color: var(--ith-navy); margin-bottom: 0.75rem; }
.ith-country-large p { font-size: 0.9375rem; color: var(--ith-slate-600); }

/* Audience grid --------------------------------------------------------- */
.ith-audience-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--ith-slate-200); margin-top: 3.5rem;
}
@media (min-width: 768px) { .ith-audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ith-audience-grid { grid-template-columns: repeat(6, 1fr); } }
.ith-audience { padding: 1.5rem; border-right: 1px solid var(--ith-slate-200); display: flex; flex-direction: column; gap: 1rem; }
.ith-audience-icon { width: 2.5rem; height: 2.5rem; background: var(--ith-slate-100); display: flex; align-items: center; justify-content: center; }
.ith-audience-icon i { width: 1rem; height: 1rem; color: var(--ith-navy); }
.ith-audience-label { font-size: 0.8125rem; font-weight: 700; color: var(--ith-navy); line-height: 1.35; }

/* Facts / fact card ----------------------------------------------------- */
.ith-fact-card { border: 1px solid var(--ith-slate-200); padding: 2rem; background: var(--ith-slate-50); }
.ith-facts { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 0; padding: 0; }
.ith-facts > div { display: flex; flex-direction: column; gap: 0.25rem; }
.ith-facts dt { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ith-slate-500); font-weight: 600; margin: 0; }
.ith-facts dd { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--ith-navy); }

.ith-facts-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ith-facts-row { grid-template-columns: repeat(3, 1fr); } }
.ith-fact-tile { border: 1px solid var(--ith-slate-200); padding: 1.5rem; background: var(--ith-slate-50); }
.ith-fact-tile p { margin: 0; font-size: 0.875rem; }

/* CTA strip ------------------------------------------------------------- */
.ith-cta-strip { background: var(--ith-cobalt); color: #fff; padding: 3rem 0; }
.ith-cta-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding: 0; }
.ith-cta-strip .ith-container { padding-left: 0; padding-right: 0; }
.ith-cta-strip-inner > *:first-child { max-width: 620px; }
.ith-cta-title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800; color: #fff; line-height: 1.2; }
.ith-cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Form card ------------------------------------------------------------- */
.ith-form-card { border: 1px solid var(--ith-slate-200); padding: 2.5rem; background: #fff; }
.ith-form-title { font-size: 1.125rem; font-weight: 700; color: var(--ith-navy); margin-bottom: 1.5rem; }
.ith-notice { background: var(--ith-slate-50); border: 1px dashed var(--ith-slate-300); padding: 1.5rem; font-size: 0.9375rem; color: var(--ith-slate-700); line-height: 1.7; }
.ith-notice code { background: var(--ith-slate-100); padding: 0.15rem 0.4rem; border-radius: 3px; font-size: 0.85em; }

/* Contact Form 7 restyle -- match theme */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1px solid var(--ith-slate-300); background: #fff; color: var(--ith-navy);
    font-family: inherit; font-size: 0.9375rem;
    outline: none; transition: border-color .2s ease;
    border-radius: 0;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--ith-cobalt); }
.wpcf7-form label { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ith-slate-500); font-weight: 600; margin-bottom: 0.5rem; }
.wpcf7-form label + input,
.wpcf7-form label + select,
.wpcf7-form label + textarea { margin-top: 0.35rem; }
.wpcf7-form p { margin: 0 0 1.25rem; }
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.95rem 2rem; background: var(--ith-navy); color: #fff;
    border: 0; font-family: inherit; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em;
    text-transform: none; cursor: pointer; transition: background .2s ease;
}
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover { background: var(--ith-cobalt); }
.wpcf7 form.sent .wpcf7-response-output { border-color: #16a34a; color: #166534; background: #f0fdf4; }
.wpcf7 form .wpcf7-response-output { border-radius: 0; padding: 0.75rem 1rem; }

.ith-region-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.ith-region { border-left: 2px solid var(--ith-cobalt); padding-left: 0.75rem; font-size: 0.875rem; font-weight: 700; color: var(--ith-navy); }

/* Footer ---------------------------------------------------------------- */
.ith-footer { background: var(--ith-navy); color: var(--ith-slate-300); margin-top: 6rem; }
.ith-footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 3.5rem;
    padding: 5rem 1.25rem;
}
@media (min-width: 1024px) {
    .ith-footer-grid { grid-template-columns: 5fr 3fr 4fr; padding-left: 2rem; padding-right: 2rem; }
}
.ith-footer-brand h3 { color: #fff; }
.ith-footer-blurb { color: var(--ith-slate-500); font-size: 0.9375rem; line-height: 1.7; max-width: 30rem; margin-top: 1.5rem; }
.ith-footer-info { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.ith-footer-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ith-footer-info-item i { width: 1rem; height: 1rem; color: var(--ith-blue-mid); margin-top: 0.25rem; flex-shrink: 0; }
.ith-footer-info-label { color: var(--ith-slate-300); font-weight: 600; font-size: 0.875rem; }
.ith-footer-info-value { color: var(--ith-slate-500); font-size: 0.875rem; }
.ith-footer-heading { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.ith-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.ith-footer-list li a { color: var(--ith-slate-500); font-size: 0.875rem; }
.ith-footer-list li a:hover { color: #fff; }

.ith-socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.ith-socials a {
    width: 2.25rem; height: 2.25rem; border: 1px solid var(--ith-slate-700);
    display: inline-flex; align-items: center; justify-content: center; color: var(--ith-slate-300);
    transition: all .2s ease;
}
.ith-socials a:hover { border-color: var(--ith-blue-mid); color: var(--ith-blue-mid); }
.ith-socials i { width: 1rem; height: 1rem; }

.ith-footer-bottom { border-top: 1px solid var(--ith-slate-800); }
.ith-footer-bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem 1.25rem; font-size: 0.75rem; color: var(--ith-slate-500); }
@media (min-width: 768px) { .ith-footer-bottom-inner { flex-direction: row; justify-content: space-between; padding-left: 2rem; padding-right: 2rem; } }

/* WooCommerce polish ---------------------------------------------------- */
.woocommerce ul.products li.product .price { color: var(--ith-navy); font-weight: 800; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ith-navy); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.woocommerce ul.products li.product a img { border: 1px solid var(--ith-slate-200); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt {
    background: var(--ith-navy) !important; color: #fff !important;
    font-weight: 700; letter-spacing: 0.02em; border-radius: 0; border: 0;
    padding: 0.85rem 1.5rem; text-transform: none; font-family: inherit;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover {
    background: var(--ith-cobalt) !important;
}
.woocommerce span.onsale { background: var(--ith-cobalt); border-radius: 0; padding: 0.4em 0.9em; font-weight: 700; }
.woocommerce .woocommerce-breadcrumb { color: var(--ith-slate-500); font-size: 0.8125rem; margin-bottom: 2rem; }
.woocommerce .woocommerce-breadcrumb a { color: var(--ith-slate-600); }
.woocommerce div.product .product_title { font-family: "Space Grotesk", sans-serif; color: var(--ith-navy); font-weight: 800; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--ith-navy); font-weight: 900; }
.woocommerce .quantity .qty { border: 1px solid var(--ith-slate-300); border-radius: 0; padding: 0.5rem; }
.woocommerce .cart_totals h2 { font-family: "Space Grotesk", sans-serif; }

/* Cart / checkout tables */
.woocommerce table.shop_table { border: 1px solid var(--ith-slate-200); border-radius: 0; border-collapse: collapse; }
.woocommerce table.shop_table th { background: var(--ith-slate-50); color: var(--ith-navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; border-bottom: 1px solid var(--ith-slate-200); }

/* Product single "Request bulk quote" spacing */
.woocommerce div.product form.cart .button + .ith-btn { margin-left: 1rem; }

/* Utility ---------------------------------------------------------------- */
[hidden] { display: none !important; }
