/* KSS unified storefront design system — 2026-08-23 */
:root {
  --kss-page: #edf3f9;
  --kss-page-soft: #f7f9fc;
  --kss-card: #ffffff;
  --kss-text: #111d30;
  --kss-heading: #0b172a;
  --kss-muted: #596b82;
  --kss-border: #d9e4ef;
  --kss-primary: #0878f9;
  --kss-primary-dark: #0561ce;
  --kss-accent: #ffc400;
  --kss-radius-xl: 26px;
  --kss-radius-lg: 20px;
  --kss-radius-md: 14px;
  --kss-shadow-soft: 0 12px 34px rgba(16, 42, 75, .08);
  --kss-shadow-card: 0 20px 54px rgba(16, 42, 75, .12);
}

body:not(.common-home),
body:not(.common-home) button,
body:not(.common-home) input,
body:not(.common-home) select,
body:not(.common-home) textarea {
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
}

body:not(.common-home) {
  color: var(--kss-text) !important;
  background:
    radial-gradient(circle at 8% 8%, rgba(50, 197, 255, .10), transparent 28rem),
    linear-gradient(180deg, #e4edf7 0%, var(--kss-page) 38%, #f4f7fb 100%) !important;
  background-attachment: fixed !important;
}

body:not(.common-home) main,
body:not(.common-home) .content-top-breadcum,
body:not(.common-home) #content,
body:not(.common-home) #product-category,
body:not(.common-home) #product-product,
body:not(.common-home) #product-search,
body:not(.common-home) #information-information,
body:not(.common-home) #information-contact {
  background: transparent !important;
}

body:not(.common-home) a {
  text-underline-offset: 3px;
}

body:not(.common-home) .breadcrumb {
  border-color: rgba(201, 216, 232, .9) !important;
  background: rgba(255, 255, 255, .88) !important;
  box-shadow: 0 8px 26px rgba(16, 42, 75, .06) !important;
  backdrop-filter: blur(10px);
}

body:not(.common-home) h1,
body:not(.common-home) .page-title,
body:not(.common-home) .product-title {
  color: var(--kss-heading) !important;
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
  text-wrap: balance;
}

body:not(.common-home) h2,
body:not(.common-home) h3,
body:not(.common-home) h4 {
  color: var(--kss-heading) !important;
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
  text-wrap: balance;
}

/* Category introduction and subcategories */
body:not(.common-home) .block-category {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px) !important;
  border: 1px solid rgba(207, 221, 235, .95) !important;
  border-radius: var(--kss-radius-xl) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96)) !important;
  box-shadow: var(--kss-shadow-card) !important;
}

body:not(.common-home) .block-category::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--kss-primary), #2dc5ff 65%, var(--kss-accent));
}

body:not(.common-home) .block-category .page-title {
  max-width: 920px;
  margin: 0 0 22px !important;
  font-size: clamp(24px, 2.15vw, 30px) !important;
  line-height: 1.18 !important;
  font-weight: 780 !important;
  letter-spacing: -.02em !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

body:not(.common-home) .category_list .subcategories_list {
  display: grid !important;
  width: 100% !important;
  padding: 0 !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  margin-top: 4px !important;
  gap: 14px !important;
  list-style: none !important;
}

body:not(.common-home) .category_list .category-item {
  min-height: 82px !important;
  padding: 12px !important;
  border-color: var(--kss-border) !important;
  border-radius: 16px !important;
  background: #f8fbff !important;
  box-shadow: 0 4px 14px rgba(16, 42, 75, .035);
}

body:not(.common-home) .category_list .category-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(8, 120, 249, .42) !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(8, 120, 249, .12) !important;
}

body:not(.common-home) .category_list .category-item > a:last-child {
  color: #172945 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

/* Long SEO descriptions are useful, but should read like editorial content. */
body:not(.common-home) .category-seo-card {
  position: relative;
  max-width: 100%;
  margin: 34px 0 28px;
  padding: clamp(26px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--kss-border);
  border-radius: var(--kss-radius-xl);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--kss-shadow-soft);
}

body:not(.common-home) .category-seo-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--kss-primary), #31c4ff);
}

body:not(.common-home) .category-seo-card .category_description {
  max-width: 920px;
  margin: 0 auto;
  color: var(--kss-muted) !important;
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

body:not(.common-home) .category-seo-card .category_description > :first-child {
  margin-top: 0 !important;
}

body:not(.common-home) .category-seo-card h2,
body:not(.common-home) .category-seo-card h3 {
  margin: 34px 0 14px !important;
  color: var(--kss-heading) !important;
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(22px, 2.3vw, 30px) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}

body:not(.common-home) .category-seo-card h2 + h2 {
  margin-top: 10px !important;
  color: #294566 !important;
  font-size: clamp(18px, 1.8vw, 23px) !important;
  font-weight: 650 !important;
}

body:not(.common-home) .category-seo-card p,
body:not(.common-home) .category-seo-card li,
body:not(.common-home) #information-information #content p,
body:not(.common-home) #information-information #content li,
body:not(.common-home) #product-product .tab-content p,
body:not(.common-home) #product-product .tab-content li {
  color: var(--kss-muted) !important;
  font-family: "Rubik", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

body:not(.common-home) .category-seo-card p,
body:not(.common-home) #information-information #content p,
body:not(.common-home) #product-product .tab-content p {
  margin: 0 0 18px !important;
}

body:not(.common-home) .category-seo-card ul,
body:not(.common-home) .category-seo-card ol,
body:not(.common-home) #information-information #content ul,
body:not(.common-home) #information-information #content ol,
body:not(.common-home) #product-product .tab-content ul,
body:not(.common-home) #product-product .tab-content ol {
  margin: 18px 0 24px !important;
  padding-left: 24px !important;
}

body:not(.common-home) .category-seo-card li,
body:not(.common-home) #information-information #content li,
body:not(.common-home) #product-product .tab-content li {
  margin-bottom: 9px !important;
  padding-left: 4px;
}

body:not(.common-home) .category-seo-card li::marker,
body:not(.common-home) #information-information #content li::marker,
body:not(.common-home) #product-product .tab-content li::marker {
  color: var(--kss-primary);
  font-weight: 800;
}

body:not(.common-home) .category-seo-card a,
body:not(.common-home) #information-information #content a,
body:not(.common-home) #product-product .tab-content a {
  color: var(--kss-primary-dark) !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 120, 249, .3);
  text-decoration-thickness: 1px;
}

/* Filters and cards */
body:not(.common-home) .category_filter,
body:not(.common-home) .pagination-wrapper {
  border-color: var(--kss-border) !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: var(--kss-shadow-soft) !important;
}

body:not(.common-home) .product-thumb {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: var(--kss-border) !important;
  border-radius: var(--kss-radius-lg) !important;
  background: var(--kss-card) !important;
  box-shadow: var(--kss-shadow-soft) !important;
}

body:not(.common-home) .product-thumb .image {
  min-height: 238px !important;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%) !important;
}

body:not(.common-home) .product-thumb .image img {
  max-width: 100% !important;
  max-height: 205px !important;
  object-fit: contain !important;
}

body:not(.common-home) .product-thumb .product-details {
  display: flex;
  padding: 18px !important;
  flex: 1;
  flex-direction: column;
}

body:not(.common-home) .product-thumb h4 {
  min-height: 48px !important;
  margin: 8px 0 10px !important;
}

body:not(.common-home) .product-thumb h4 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--kss-heading) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 750 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body:not(.common-home) .product-thumb .price {
  margin-top: auto !important;
  color: var(--kss-primary-dark) !important;
  font-size: 19px !important;
}

body:not(.common-home) .btn-primary,
body:not(.common-home) .cart_button {
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--kss-primary), #19a8ff) !important;
}

/* Product and informational pages */
body:not(.common-home) #product-product .product-container,
body:not(.common-home) #product-product .tab-content,
body:not(.common-home) #information-information #content,
body:not(.common-home) #information-contact .contact-form-design,
body:not(.common-home) .panel,
body:not(.common-home) .well {
  border-color: var(--kss-border) !important;
  background: rgba(255,255,255,.97) !important;
  box-shadow: var(--kss-shadow-card) !important;
}

body:not(.common-home) #information-information #content,
body:not(.common-home) #product-product .tab-content {
  max-width: 100%;
}

body:not(.common-home) #information-information #content > :not(.breadcrumb),
body:not(.common-home) #product-product .tab-content > * {
  max-width: 980px;
}

body:not(.common-home) #information-information #content h2,
body:not(.common-home) #information-information #content h3,
body:not(.common-home) #product-product .tab-content h2,
body:not(.common-home) #product-product .tab-content h3 {
  margin: 30px 0 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

body:not(.common-home) #product-product h1.product-title {
  margin: 0 0 16px !important;
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.18 !important;
}

body:not(.common-home) #product-product .product-info .image,
body:not(.common-home) #product-product .product-info .image > a {
  border-radius: 20px !important;
}

body:not(.common-home) #product-product .product-info .image {
  overflow: hidden;
  border: 1px solid var(--kss-border) !important;
  background: linear-gradient(180deg, #fff, #f7faff) !important;
}

body:not(.common-home) #information-contact .contact-form-design .left,
body:not(.common-home) #information-contact .contact-form {
  border-radius: 18px !important;
}

body:not(.common-home) #information-contact .contact-form-design .left {
  border: 1px solid var(--kss-border) !important;
  background: #f8fbff !important;
}

body:not(.common-home) #information-contact input,
body:not(.common-home) #information-contact textarea {
  border-color: var(--kss-border) !important;
  border-radius: 12px !important;
  background: #fbfdff !important;
  box-shadow: inset 0 1px 2px rgba(16, 42, 75, .035) !important;
}

@media (max-width: 991px) {
  body:not(.common-home) .category_list .subcategories_list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body:not(.common-home) {
    background:
      radial-gradient(circle at 50% 0, rgba(50, 197, 255, .12), transparent 20rem),
      linear-gradient(180deg, #e7eff8 0%, #f4f7fb 100%) !important;
    overflow-x: hidden;
  }

  body:not(.common-home) .breadcrumb + .row {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body:not(.common-home) .breadcrumb + .row > #content,
  body:not(.common-home) .breadcrumb + .row > [id="content"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body:not(.common-home) .breadcrumb {
    margin-bottom: 14px !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
  }

  body:not(.common-home) .block-category {
    padding: 21px 16px 18px !important;
    border-radius: 20px !important;
  }

  body:not(.common-home) .block-category .page-title {
    display: block !important;
    width: 100% !important;
    max-width: calc(100vw - 58px) !important;
    margin-bottom: 16px !important;
    font-size: clamp(20px, 5.4vw, 23px) !important;
    line-height: 1.26 !important;
    box-sizing: border-box !important;
  }

  body:not(.common-home) .block-category,
  body:not(.common-home) .category_list,
  body:not(.common-home) .category_list .subcategories_list,
  body:not(.common-home) .category_list .category-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body:not(.common-home) .block-category {
    width: calc(100vw - 26px) !important;
    max-width: calc(100vw - 26px) !important;
    overflow: hidden;
  }

  body:not(.common-home) .block-category > .row.category_thumb {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body:not(.common-home) .block-category .category_details {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body:not(.common-home) .block-category .title-description {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body:not(.common-home) .category_list .category-item > a:last-child {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  body:not(.common-home) .category_list .subcategories_list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  body:not(.common-home) .category_list .category-item {
    min-height: 68px !important;
    padding: 8px !important;
  }

  body:not(.common-home) .category_list .category-item > a:last-child {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  body:not(.common-home) .cat_prod,
  body:not(.common-home) #product-search #content > .row:not(:first-of-type) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body:not(.common-home) .product-thumb .image {
    min-height: 138px !important;
    height: 138px !important;
    padding: 9px !important;
  }

  body:not(.common-home) .product-thumb .image img {
    width: 100% !important;
    height: 100% !important;
    max-height: 120px !important;
  }

  body:not(.common-home) .product-thumb .product-details {
    min-height: 190px;
    padding: 12px 10px !important;
  }

  body:not(.common-home) .product-cat {
    min-height: 24px;
    font-size: 8.5px !important;
    line-height: 1.35 !important;
    letter-spacing: .04em !important;
  }

  body:not(.common-home) .product-thumb h4 {
    min-height: 43px !important;
    margin: 6px 0 !important;
  }

  body:not(.common-home) .product-thumb h4 a {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body:not(.common-home) .product-thumb .description {
    display: none !important;
  }

  body:not(.common-home) .product-thumb .price {
    font-size: 17px !important;
  }

  body:not(.common-home) .category-seo-card {
    margin: 24px 0 18px;
    padding: 24px 18px 24px 21px;
    border-radius: 20px;
  }

  body:not(.common-home) .category-seo-card .category_description,
  body:not(.common-home) .category-seo-card p,
  body:not(.common-home) .category-seo-card li,
  body:not(.common-home) #information-information #content p,
  body:not(.common-home) #information-information #content li,
  body:not(.common-home) #product-product .tab-content p,
  body:not(.common-home) #product-product .tab-content li {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  body:not(.common-home) .category-seo-card h2,
  body:not(.common-home) .category-seo-card h3 {
    margin-top: 26px !important;
    font-size: 21px !important;
  }

  body:not(.common-home) #product-product .product-container,
  body:not(.common-home) #information-information #content,
  body:not(.common-home) #information-contact .contact-form-design {
    border-radius: 20px !important;
  }

  body:not(.common-home) #product-product h1.product-title {
    margin-top: 16px !important;
    font-size: 21px !important;
    line-height: 1.28 !important;
    letter-spacing: -.02em !important;
  }
}

/* Home typography and compact footer */
.common-home .banner-content,
.common-home .banner-content *,
.common-home .subtitle,
.common-home .subtitle *,
.common-home .cms-banner-item,
.common-home .cms-banner-item * {
  font-family: 'Rubik', Arial, sans-serif !important;
}

footer .footer-top,
footer .footer-middle {
  display: none !important;
}

footer #footer {
  padding-top: clamp(26px, 3vw, 44px) !important;
}

footer #footer h5 {
  font-size: 16px !important;
  line-height: 1.3 !important;
  font-weight: 760 !important;
}

footer #footer a,
footer #footer li,
footer #footer .data {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

@media (max-width: 767px) {
  footer #footer {
    padding-top: 12px !important;
  }
}

/* Compact, consistent heading scale across every inner page */
body:not(.common-home) #content h1,
body:not(.common-home) #content h1.page-title,
body:not(.common-home) #content h1.product-title,
body:not(.common-home) #content > h2.page-title {
  font-size: clamp(24px, 2.15vw, 30px) !important;
  line-height: 1.22 !important;
  font-weight: 780 !important;
  letter-spacing: -.02em !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

body:not(.common-home) #content h2:not(.page-title),
body:not(.common-home) .category-seo-card h2,
body:not(.common-home) #product-product .tab-content h2 {
  font-size: clamp(20px, 1.65vw, 23px) !important;
  line-height: 1.3 !important;
  font-weight: 760 !important;
  letter-spacing: -.012em !important;
}

body:not(.common-home) #content h3,
body:not(.common-home) .category-seo-card h3,
body:not(.common-home) #product-product .tab-content h3 {
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.35 !important;
  font-weight: 730 !important;
}

@media (max-width: 767px) {
  body:not(.common-home) #content h1,
  body:not(.common-home) #content h1.page-title,
  body:not(.common-home) #content h1.product-title,
  body:not(.common-home) #content > h2.page-title {
    font-size: 23px !important;
    line-height: 1.27 !important;
  }

  body:not(.common-home) #content h2:not(.page-title),
  body:not(.common-home) .category-seo-card h2,
  body:not(.common-home) #product-product .tab-content h2 {
    font-size: 19px !important;
    line-height: 1.34 !important;
  }

  body:not(.common-home) #content h3,
  body:not(.common-home) .category-seo-card h3,
  body:not(.common-home) #product-product .tab-content h3 {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }
}

/* Account, checkout, sitemap and utility pages */
body:not(.common-home) #information-sitemap #content,
body:not(.common-home) #account-login #content .well,
body:not(.common-home) #account-register #content,
body:not(.common-home) #account-forgotten #content,
body:not(.common-home) #checkout-cart #content > .buttons,
body:not(.common-home) #product-compare #content > .buttons {
  border: 1px solid var(--kss-border) !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.97) !important;
  box-shadow: var(--kss-shadow-card) !important;
}

body:not(.common-home) #information-sitemap #content {
  padding: clamp(22px, 3vw, 38px) !important;
}

body:not(.common-home) #information-sitemap #content > .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body:not(.common-home) #information-sitemap #content a {
  color: #35516f;
  line-height: 1.75;
}

body:not(.common-home) #information-sitemap #content a:hover {
  color: var(--kss-primary-dark);
}

body:not(.common-home) .form-control {
  min-height: 44px;
  border-color: var(--kss-border) !important;
  border-radius: 11px !important;
  background: #fbfdff !important;
  box-shadow: inset 0 1px 2px rgba(16,42,75,.035) !important;
}

body:not(.common-home) textarea.form-control {
  min-height: 120px;
}

body:not(.common-home) .table-responsive {
  overflow: hidden;
  border: 1px solid var(--kss-border) !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--kss-shadow-soft);
}

body:not(.common-home) .table-responsive .table {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  body:not(.common-home) #information-sitemap #content {
    padding: 20px 16px !important;
  }

  body:not(.common-home) .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 380px) {
  body:not(.common-home) .category_list .subcategories_list,
  body:not(.common-home) .cat_prod,
  body:not(.common-home) #product-search #content > .row:not(:first-of-type) {
    grid-template-columns: 1fr !important;
  }

  body:not(.common-home) .product-thumb .image {
    height: 190px !important;
    min-height: 190px !important;
  }
}

/* News, brands and secondary catalogue pages */
body:not(.common-home) .all-blog > h1,
body:not(.common-home) #product-manufacturer h1.page-title,
body:not(.common-home) #product-special h2.page-title {
  margin: 0 0 22px !important;
  color: var(--kss-heading) !important;
  font-size: clamp(27px, 2.5vw, 36px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
}

body:not(.common-home) .all-blog .panel-default {
  margin: 0 !important;
}

body:not(.common-home) .all-blog .panel.panel-default {
  overflow: hidden;
  margin: 0 0 20px !important;
  border: 1px solid var(--kss-border) !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.98) !important;
  box-shadow: var(--kss-shadow-card) !important;
}

body:not(.common-home) .all-blog .panel-body {
  display: grid !important;
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  gap: 25px;
  padding: 18px !important;
}

body:not(.common-home) .all-blog .panel-body::before,
body:not(.common-home) .all-blog .panel-body::after,
body:not(.common-home) .manufacturer-content .row::before,
body:not(.common-home) .manufacturer-content .row::after {
  display: none !important;
  content: none !important;
}

body:not(.common-home) .all-blog .blog-left-content,
body:not(.common-home) .all-blog .blog-right-content {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

body:not(.common-home) .all-blog .blog-image {
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  border-radius: 16px;
  background: #eef4fa;
}

body:not(.common-home) .all-blog .blog-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 240px;
  border: 0 !important;
  object-fit: cover;
}

body:not(.common-home) .all-blog .blog-right-content {
  display: flex;
  padding: 7px 8px 7px 0;
  flex-direction: column;
}

body:not(.common-home) .all-blog .blog-right-content h5 {
  margin: 0 0 10px !important;
}

body:not(.common-home) .all-blog .blog-right-content h5 a {
  color: var(--kss-heading) !important;
  font-size: clamp(19px, 1.55vw, 24px) !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
}

body:not(.common-home) .all-blog .date-time {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--kss-muted) !important;
  font-size: 12px !important;
}

body:not(.common-home) .all-blog .blog-date {
  display: inline !important;
}

body:not(.common-home) .all-blog .blog-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #53667c !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  white-space: normal !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

body:not(.common-home) .all-blog .read-more {
  margin-top: auto !important;
  padding-top: 16px;
}

body:not(.common-home) .all-blog .read-more a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 11px;
  background: #eaf5ff;
  color: var(--kss-primary-dark) !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

body:not(.common-home) #product-manufacturer #content > p:first-of-type {
  display: flex;
  margin: 0 0 22px !important;
  padding: 15px 17px;
  border: 1px solid var(--kss-border);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  box-shadow: var(--kss-shadow-soft);
}

body:not(.common-home) #product-manufacturer #content > p:first-of-type a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  border: 1px solid #dbe7f2;
  border-radius: 9px;
  background: #fff;
  color: var(--kss-heading) !important;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

body:not(.common-home) .manufacturer-list {
  display: grid;
  overflow: hidden;
  margin: 0 0 13px !important;
  border: 1px solid var(--kss-border);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  grid-template-columns: 64px minmax(0, 1fr);
  box-shadow: var(--kss-shadow-soft);
}

body:not(.common-home) .manufacturer-heading {
  display: flex;
  min-height: 72px;
  padding: 16px !important;
  border: 0 !important;
  background: linear-gradient(145deg, #0b71d9, #16a5f5) !important;
  color: #fff !important;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  font-weight: 850 !important;
}

body:not(.common-home) .manufacturer-content {
  display: grid;
  padding: 13px 17px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px 12px;
}

body:not(.common-home) .manufacturer-content .row,
body:not(.common-home) .manufacturer-content [class*="col-"] {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

body:not(.common-home) .manufacturer-content a {
  display: block;
  padding: 8px 10px;
  border-radius: 9px;
  color: #243a55 !important;
  font-weight: 700;
}

body:not(.common-home) .manufacturer-content a:hover {
  background: #eef7ff;
  color: var(--kss-primary-dark) !important;
}

body:not(.common-home) #product-special #content > p,
body:not(.common-home) #product-special #content > .buttons {
  margin: 0 !important;
  padding: 18px 22px;
  border-right: 1px solid var(--kss-border);
  border-left: 1px solid var(--kss-border);
  background: #fff;
}

body:not(.common-home) #product-special #content > h2.page-title {
  padding: 24px 22px 0;
  border: 1px solid var(--kss-border);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: #fff;
}

body:not(.common-home) #product-special #content > p {
  border-top: 0;
  border-radius: 0;
  color: var(--kss-muted);
  font-size: 16px;
}

body:not(.common-home) #product-special #content > .buttons {
  border-bottom: 1px solid var(--kss-border);
  border-radius: 0 0 18px 18px;
}

@media (max-width: 767px) {
  body:not(.common-home) .all-blog > h1,
  body:not(.common-home) #product-manufacturer h1.page-title,
  body:not(.common-home) #product-special h2.page-title {
    margin-bottom: 16px !important;
    font-size: 25px !important;
  }

  body:not(.common-home) .all-blog .panel-body {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 13px !important;
  }

  body:not(.common-home) .all-blog .blog-image,
  body:not(.common-home) .all-blog .blog-image img {
    min-height: 190px;
    height: 190px !important;
  }

  body:not(.common-home) .all-blog .blog-right-content {
    padding: 2px 5px 7px;
  }

  body:not(.common-home) .all-blog .blog-desc {
    -webkit-line-clamp: 4;
  }

  body:not(.common-home) .manufacturer-list {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  body:not(.common-home) .manufacturer-heading {
    padding: 10px !important;
    font-size: 20px !important;
  }

  body:not(.common-home) .manufacturer-content {
    padding: 9px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Internal pages: keep the desktop catalogue panel completely closed until
   the catalogue control is hovered or activated. The legacy theme collapsed
   only the list, leaving the white padded menu shell visible as a strip. */
@media (min-width: 992px) {
  body:not(.common-home) #header-left .vertical-menu {
    display: none !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body:not(.common-home) #header-left .main-category-list:hover .vertical-menu,
  body:not(.common-home) #header-left .cat-menu.WDactive .vertical-menu,
  body:not(.common-home).menu_hover #header-left .vertical-menu {
    display: block !important;
    padding: 10px 0 !important;
    border: 1px solid #dce6f2 !important;
    box-shadow: 0 18px 36px rgba(5, 20, 40, 0.22) !important;
  }
}
