/* ASD CORMAK Key Features v1.1.0 - Front office */
.asdckf {
  --asdckf-accent: #e30613;
  --asdckf-radius: 10px;
  --asdckf-ink: #151a20;
  --asdckf-muted: #68727d;
  --asdckf-line: #e2e6ea;
  --asdckf-soft: #f7f8f9;
  --asdckf-white: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.asdckf *, .asdckf *::before, .asdckf *::after { box-sizing: border-box; }

/* --------------------------------------------------------------------------
   PRODUCT PAGE - icon + feature name + value
   -------------------------------------------------------------------------- */
.asdckf-product {
  position: relative;
  width: 100%;
  margin: 16px 0 18px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .028), rgba(255, 255, 255, 0) 46%),
    var(--asdckf-white);
  border: 1px solid var(--asdckf-line);
  border-left: 3px solid var(--asdckf-accent);
  border-radius: var(--asdckf-radius);
  box-shadow: 0 7px 24px rgba(20, 28, 38, .045);
  clear: both;
  isolation: isolate;
}

.asdckf-product__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.asdckf-product__title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--asdckf-ink);
  font-size: 16px;
  line-height: 1.2;
}

.asdckf-product__title strong { font-weight: 750; }

.asdckf-product__title-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--asdckf-ink);
}

.asdckf-product__title-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.asdckf-product__accent-line {
  width: 16px;
  height: 2px;
  margin-left: 1px;
  background: var(--asdckf-accent);
  border-radius: 10px;
}

.asdckf-product__all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  color: var(--asdckf-accent) !important;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity .18s ease;
}

.asdckf-product__all:hover { opacity: .75; }

.asdckf-product__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.asdckf-product__card {
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 10px 11px 11px;
  background: #fff;
  border: 1px solid var(--asdckf-line);
  border-radius: calc(var(--asdckf-radius) * .72);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  overflow: hidden;
}

.asdckf-product__card:hover {
  border-color: rgba(227, 6, 19, .25);
  box-shadow: 0 6px 18px rgba(20, 28, 38, .06);
  transform: translateY(-1px);
}

.asdckf-product__top {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.asdckf-product__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(227, 6, 19, .12);
  border-radius: 50%;
  background: rgba(227, 6, 19, .025);
}

.asdckf-product__icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.asdckf-product__label {
  min-width: 0;
  color: var(--asdckf-muted);
  font-size: 10.5px;
  line-height: 1.18;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.asdckf-product__value {
  display: block;
  width: 100%;
  color: var(--asdckf-ink);
  font-size: 15.5px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.asdckf-product__value--long {
  font-size: 14px;
  line-height: 1.16;
}

.asdckf-product__value--very-long {
  font-size: 12.5px;
  line-height: 1.18;
}

/* Dynamic target created by front.js. Keeps technical specifications visible
   below Warehouse's sticky header when using the quick link. */
#asdckf-all-specifications {
  scroll-margin-top: 125px;
}

/* --------------------------------------------------------------------------
   PRODUCT LISTS / CATEGORY / ACCESSORIES - icon + value only
   -------------------------------------------------------------------------- */
.asdckf-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 8px 0 9px;
  clear: both;
  min-height: 49px;
}

.asdckf-list__item {
  min-width: 0;
  height: 49px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 3px 4px;
  border: 1px solid var(--asdckf-line);
  border-radius: calc(var(--asdckf-radius) * .62);
  background: #fff;
  overflow: hidden;
}

.asdckf-list__icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.asdckf-list__icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.asdckf-list__value {
  display: -webkit-box;
  width: 100%;
  color: var(--asdckf-ink);
  font-size: 11px;
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

/* Warehouse normalisation. Product-list hook is also used by accessories,
   same-category products, cross-selling and other product carousels. */
.product-miniature .asdckf-list,
.product-miniature .product-description .asdckf-list,
.product-miniature .product-description-short .asdckf-list,
.product-accessories .asdckf-list,
.products-carousel .asdckf-list,
.product-carousel .asdckf-list {
  float: none !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  max-width: 100%;
}

/* The large block is strictly for the current product. If old cached markup
   from v1.0.0 survives briefly in a miniature, hide it defensively. */
.product-miniature .asdckf-product,
.product-accessories .product-miniature .asdckf-product,
.products-carousel .product-miniature .asdckf-product,
.product-carousel .product-miniature .asdckf-product {
  display: none !important;
}

.product-prices > .asdckf-product:first-child { margin-top: 11px; }

@media (max-width: 1199px) {
  .asdckf-product__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asdckf-product__card { min-height: 84px; }
}

@media (max-width: 767px) {
  .asdckf-product {
    margin: 13px 0 15px;
    padding: 12px;
    border-left-width: 2px;
    box-shadow: 0 5px 16px rgba(20, 28, 38, .045);
  }

  .asdckf-product__header { align-items: flex-start; gap: 8px; margin-bottom: 10px; }
  .asdckf-product__title { font-size: 14.5px; }
  .asdckf-product__title-icon { width: 22px; height: 22px; flex-basis: 22px; }
  .asdckf-product__all { font-size: 9.5px; text-align: right; }
  .asdckf-product__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .asdckf-product__card { min-height: 78px; padding: 8px; gap: 7px; }
  .asdckf-product__top { gap: 6px; }
  .asdckf-product__icon { width: 27px; height: 27px; flex-basis: 27px; }
  .asdckf-product__icon img { width: 17px; height: 17px; }
  .asdckf-product__label { font-size: 9px; }
  .asdckf-product__value { font-size: 12.5px; }
  .asdckf-product__value--long { font-size: 11.5px; }
  .asdckf-product__value--very-long { font-size: 10.5px; }

  .asdckf-list { gap: 4px; margin: 7px 0 8px; min-height: 45px; }
  .asdckf-list__item { height: 45px; padding: 4px 2px; }
  .asdckf-list__icon { width: 18px; height: 18px; flex-basis: 18px; }
  .asdckf-list__icon img { width: 17px; height: 17px; }
  .asdckf-list__value { font-size: 10px; }

  /* On mobile, the requested compact design remains four quick specs in a row
     whenever the card is wide enough; otherwise the configured 2x2 fallback applies. */
  .asdckf-list--mobile-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asdckf-list--mobile-1 { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .asdckf-product__all { display: none; }
  .asdckf-product__grid { gap: 5px; }
  .asdckf-product__card { padding: 6px; }
}
