/* ==========================================================================
   LTC Consulting — Theme pro (clean, no overlap)
   ========================================================================== */

:root {
  --navy: #0b1f33;
  --navy-2: #132a42;
  --ink: #152033;
  --muted: #5c6b7a;
  --line: #e6edf3;
  --bg: #f4f7fa;
  --white: #ffffff;
  --teal: #0f9d8a;
  --teal-2: #12b39e;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11, 31, 51, 0.08);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Reset layout conflicts ---- */
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

#header {
  position: relative;
  z-index: 100;
  background: var(--white);
}

#wrapper {
  padding: 0 !important;
  background: transparent !important;
  overflow-x: hidden;
}

#wrapper > .breadcrumb,
body#index .breadcrumb {
  display: none !important;
}

body#index #wrapper > .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body#index #wrapper > .container > .row {
  margin: 0 !important;
  display: block !important;
}

body#index #left-column,
body#index #right-column {
  display: none !important;
}

body#index #content-wrapper,
body#index #main,
body#index .page-home {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.container {
  max-width: var(--max);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  width: 100%;
  box-sizing: border-box;
}

/* ---- Buttons ---- */
.ltc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none !important;
  border: 2px solid transparent;
  line-height: 1.2;
  transition: .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.ltc-btn--primary {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(15, 157, 138, .25);
}
.ltc-btn--primary:hover { transform: translateY(-1px); color: #fff !important; }
.ltc-btn--ghost {
  background: transparent;
  border-color: rgba(11, 31, 51, .15);
  color: var(--navy) !important;
}
.ltc-btn--ghost:hover { border-color: var(--teal); color: var(--teal) !important; }
.ltc-btn--dark {
  background: var(--navy);
  color: #fff !important;
}
.ltc-btn--dark:hover { background: var(--navy-2); color: #fff !important; }
.ltc-btn--light {
  background: #fff;
  color: var(--navy) !important;
  box-shadow: var(--shadow);
}
.ltc-btn--lg { padding: .95rem 1.5rem; font-size: 1rem; }
.ltc-btn--block { width: 100%; }

/* ---- Topbar ---- */
.ltc-topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .45rem 0;
}
.ltc-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ltc-topbar__link {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

/* ---- Header ---- */
.ltc-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 90;
}
.ltc-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding: .65rem 0;
}
.ltc-header__brand {
  flex: 0 0 auto;
  max-width: 220px;
}
.ltc-logo-wrap {
  margin: 0;
  font-size: inherit;
  line-height: 0;
}
.ltc-logo-wrap img,
#header .logo,
#header img.logo {
  display: block !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  height: auto !important;
}
.ltc-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none !important;
  color: var(--navy) !important;
  font-weight: 800;
  font-size: 1.15rem;
}
.ltc-wordmark__badge {
  background: var(--teal);
  color: #fff;
  padding: .2rem .45rem;
  border-radius: 8px;
  font-size: .85rem;
}
.ltc-wordmark--light { color: #fff !important; }
.ltc-wordmark--light .ltc-wordmark__text { color: #fff; }

.ltc-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}
.ltc-header__nav .menu,
.ltc-header__nav #_desktop_top_menu,
.ltc-header__nav .top-menu {
  margin: 0;
}
#header .top-menu a[data-depth="0"] {
  font-weight: 600;
  text-transform: none;
  font-size: .9rem;
  color: var(--ink);
  padding: .4rem .65rem;
}
#header .top-menu a[data-depth="0"]:hover { color: var(--teal); }

.ltc-header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 0 0 auto;
}
.ltc-header__utils {
  display: flex;
  align-items: center;
  gap: .35rem;
  opacity: .85;
}
.ltc-header__utils .user-info,
.ltc-header__utils .blockcart,
.ltc-header__utils .language-selector,
.ltc-header__utils .currency-selector {
  margin: 0;
}
.ltc-header__utils a {
  font-size: .8rem;
  color: var(--muted) !important;
}

/* Mobile header */
.ltc-mobile-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: .5rem 0;
}
.ltc-mobile-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.ltc-mobile-nav__logo img {
  max-height: 40px !important;
  width: auto !important;
}
.ltc-mobile-panel {
  padding: .75rem 0 1rem;
  border-top: 1px solid var(--line);
  margin-top: .5rem;
}
.ltc-mobile-panel__extra {
  display: grid;
  gap: .5rem;
  margin-top: .75rem;
}

/* Hide classic duplicate header pieces */
.header-banner.ltc-topbar + .header-nav.ltc-nav-secondary { display: none !important; }

/* ---- Hero ---- */
.ltc-hero {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(15,157,138,.12), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, #fff 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.ltc-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}
.ltc-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 .75rem;
}
.ltc-hero__title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.ltc-hero__title span {
  color: var(--teal);
}
.ltc-hero__text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 34rem;
}
.ltc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.ltc-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.ltc-trust li {
  position: relative;
  padding-left: 1rem;
}
.ltc-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.ltc-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.ltc-panel__title {
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1rem;
  font-size: 1rem;
}
.ltc-panel__item {
  display: block;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: .65rem;
  text-decoration: none !important;
  transition: .15s ease;
  background: #fafcfd;
}
.ltc-panel__item:last-child { margin-bottom: 0; }
.ltc-panel__item:hover {
  border-color: rgba(15,157,138,.45);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.ltc-panel__item strong {
  display: block;
  color: var(--navy);
  font-size: .98rem;
  margin-bottom: .15rem;
}
.ltc-panel__item span {
  color: var(--muted);
  font-size: .88rem;
}

/* ---- Sections ---- */
.ltc-section {
  padding: 3.75rem 0;
}
.ltc-section--soft {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ltc-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.ltc-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .5rem;
  letter-spacing: -.02em;
}
.ltc-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.ltc-head--row {
  text-align: left;
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ltc-head--row > div { max-width: 32rem; }

/* Service cards */
.ltc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.ltc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.ltc-card--accent {
  border-color: rgba(15,157,138,.4);
  background: linear-gradient(180deg, rgba(15,157,138,.06), #fff 40%);
}
.ltc-card__num {
  font-weight: 800;
  color: var(--teal);
  font-size: .85rem;
  letter-spacing: .06em;
  margin-bottom: .65rem;
}
.ltc-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 800;
}
.ltc-card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.ltc-card__link {
  font-weight: 800;
  color: var(--teal) !important;
  text-decoration: none !important;
}
.ltc-card__link:hover { color: #0b7f70 !important; }

/* Module category grid */
.ltc-modgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ltc-mod {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  text-decoration: none !important;
  transition: .15s ease;
  box-shadow: 0 4px 14px rgba(11,31,51,.04);
}
.ltc-mod:hover {
  border-color: rgba(15,157,138,.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ltc-mod strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.ltc-mod span {
  color: var(--muted);
  font-size: .9rem;
}

/* Steps */
.ltc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.ltc-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.ltc-steps strong {
  display: block;
  color: var(--navy);
  margin-bottom: .35rem;
  font-size: 1rem;
}
.ltc-steps span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

/* CTA band */
.ltc-cta {
  background: linear-gradient(120deg, var(--navy), #163a5c 55%, #0f766e);
  color: #fff;
  padding: 2.75rem 0;
}
.ltc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ltc-cta h2 {
  margin: 0 0 .35rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
}
.ltc-cta p {
  margin: 0;
  opacity: .88;
}

/* Footer */
#footer.js-footer,
#footer {
  background: var(--navy) !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ltc-footer {
  background: transparent !important;
  color: rgba(255,255,255,.82);
  padding: 3rem 0 1.25rem !important;
  margin: 0 !important;
  border: 0 !important;
}
.ltc-footer a { color: rgba(255,255,255,.88) !important; }
.ltc-footer a:hover { color: #fff !important; }
.ltc-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.ltc-footer__brand p {
  margin: .85rem 0 0;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 22rem;
}
.ltc-footer h4 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 .75rem;
  font-weight: 800;
}
.ltc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ltc-footer li { margin: .35rem 0; font-size: .92rem; }
.ltc-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  opacity: .75;
}

/* Hide classic footer leftovers if any */
.footer-container:not(.ltc-footer) { display: none !important; }
.ltc-footer-cta { display: none !important; }

/* Product CTA modules */
.ltc-module-cta__label--buy {
  color: #0b1f33;
  font-weight: 600;
}
.ltc-mini-cta--buy {
  background: #0b1f33 !important;
  color: #fff !important;
  border-color: #0b1f33 !important;
}
.ltc-module-cta {
  margin-top: .75rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfb;
}
.ltc-module-cta__label {
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .75rem;
}
.ltc-module-cta__btn {
  display: inline-flex !important;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  padding: .95rem 1.2rem !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--teal-2), var(--teal)) !important;
  border: 0 !important;
}
.ltc-module-cta__secondary {
  display: inline-block;
  margin-top: .8rem;
  font-weight: 700;
  color: var(--navy) !important;
}
.ltc-module-cta__note {
  margin: .85rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
}
.ltc-mini-cta {
  display: inline-flex;
  margin-top: .5rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none !important;
}
.ltc-mini-cta:hover { background: var(--teal); color: #fff !important; }
.ltc-price-hint {
  margin-left: .35rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

/* Product / category pages spacing */
#category #wrapper > .container,
#product #wrapper > .container,
#contact #wrapper > .container,
body#cms #wrapper > .container {
  padding-top: 0 !important;
  padding-bottom: 2.5rem !important;
  max-width: var(--max) !important;
}

/* ========== CATALOGUE MODULES (page catégorie) ========== */
body#category #wrapper > .container > .row {
  display: block !important;
  margin: 0 !important;
}
body#category #left-column {
  display: none !important;
}
body#category #content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  float: none !important;
  padding: 0 !important;
}

.ltc-catalog {
  width: 100%;
}

.ltc-catalog-hero {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(15,157,138,.14), transparent 60%),
    linear-gradient(180deg, #f6f9fb 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin: 1.25rem 0 1.5rem;
}
.ltc-catalog-hero__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.ltc-catalog-hero__desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: 1.02rem;
}
.ltc-catalog-hero__desc p { margin: 0; }
.ltc-catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.ltc-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1.5rem;
}
.ltc-subcats__item {
  display: inline-flex;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none !important;
  transition: .15s ease;
}
.ltc-subcats__item:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: rgba(15,157,138,.06);
}

.ltc-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}
.ltc-catalog-toolbar__count {
  margin: 0;
  font-weight: 800;
  color: var(--navy);
}
.ltc-catalog-toolbar__note {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Hide ugly default PS list chrome on category */
body#category .products-selection,
body#category .sort-by-row,
body#category #search_filters_wrapper,
body#category #search_filter_controls,
body#category .facet-dropdown,
body#category .total-products,
body#category .products-sort-order {
  display: none !important;
}

/* Product cards on listing */
body#category #js-product-list .products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body#category #js-product-list .product {
  padding: 10px;
  margin: 0;
}
body#category .product-miniature {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11,31,51,.05);
  transition: .18s ease;
}
body#category .product-miniature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15,157,138,.35);
}
body#category .thumbnail-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
body#category .thumbnail-top {
  position: relative;
  background: #0b1f33;
}
body#category .product-thumbnail {
  display: block;
  margin: 0 !important;
}
body#category .product-thumbnail img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover;
  border-radius: 0 !important;
}
body#category .highlighted-informations,
body#category .product-flags,
body#category .product-list-reviews,
body#category .quick-view {
  display: none !important;
}
body#category .product-description {
  padding: 1rem 1.05rem 1.15rem !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body#category .product-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  margin: 0 0 .5rem !important;
  line-height: 1.3 !important;
  min-height: 2.6em;
}
body#category .product-title a {
  color: var(--navy) !important;
  text-decoration: none !important;
}
body#category .product-price-and-shipping {
  margin: 0 0 .65rem !important;
}
body#category .product-price-and-shipping .price {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
}
body#category .ltc-mini-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  justify-content: center;
  padding: .55rem .9rem;
}

.ltc-catalog-empty {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.ltc-catalog-empty h2 {
  color: var(--navy);
  margin: 0 0 .5rem;
}
.ltc-catalog-empty p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

/* Subcategory pages same treatment */
body#category .block-category,
body#category .category-cover {
  display: none !important;
}

.btn-primary,
.btn.btn-primary {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  border-radius: 999px;
  font-weight: 700;
}

/* Forms */
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,157,138,.15);
}

/* Responsive */
@media (max-width: 991px) {
  .ltc-hero__grid,
  .ltc-cards,
  .ltc-modgrid,
  .ltc-steps,
  .ltc-footer__grid {
    grid-template-columns: 1fr;
  }
  .ltc-hero { padding: 2.25rem 0 2rem; }
  .ltc-section { padding: 2.5rem 0; }
  .ltc-header__nav { display: none !important; }
  .ltc-header__actions { display: none !important; }
  .ltc-header__inner { min-height: 58px; }
  .ltc-logo-wrap img { max-height: 40px !important; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ltc-cards,
  .ltc-modgrid { grid-template-columns: 1fr 1fr; }
  .ltc-steps { grid-template-columns: 1fr 1fr; }
}

/* Kill leftover home hooks if any render */
body#index #carousel,
body#index .featured-products,
body#index #custom-text {
  display: none !important;
}
