:root {
    --page-bg: #f6f8fb;
    --card-bg: #ffffff;
    --text: #172033;
    --muted: #687386;
    --border: #dfe5ee;
    --border-soft: #edf1f6;
    --brand: #123b70;
    --brand-dark: #0c2a50;
    --accent: #eef5ff;
    --shadow: 0 14px 35px rgba(20, 35, 60, 0.08);
    --radius: 18px;
    --radius-sm: 5px;
    --container: 95%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.product-page {
    max-width: var(--container);
    padding: 28px 10% 64px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--brand);
    font-weight: 600;
}

.breadcrumbs span:last-child {
    color: var(--text);
    font-weight: 600;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 36px;
    align-items: stretch;
    margin-bottom: 34px;
}

.product-media,
.product-summary,
.product-highlights,
.product-overview,
.product-variants,
.product-specifications,
.product-documents,
.product-features,
.product-use-cases {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    min-height: 420px;
    min-width: 0;
    overflow: hidden;
}

.product-gallery {
    width: 100%;
    min-width: 0;
}

.product-image-area {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
    padding: 18px 54px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.product-primary-image-button,
.product-thumbnail,
.product-image-nav {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.product-primary-image-button {
    display: grid;
    place-items: center;
    width: 100%;
    padding: 0;
    background: transparent;
}

.product-primary-image-button:focus-visible,
.product-thumbnail:focus-visible,
.product-image-nav:focus-visible {
    outline: 3px solid rgba(18, 59, 112, 0.3);
    outline-offset: 3px;
}

.product-image-nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand);
    box-shadow: 0 6px 16px rgba(20, 35, 60, 0.12);
    transform: translateY(-50%);
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.product-image-nav:hover {
    background: var(--brand);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.product-image-prev {
    left: 12px;
}

.product-image-next {
    right: 12px;
}

.product-image {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding: 3px 3px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--brand) var(--border-soft);
    scrollbar-width: thin;
}

.product-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: var(--border-soft);
    border-radius: 999px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 999px;
}

.product-thumbnail {
    flex: 0 0 78px;
    display: grid;
    place-items: center;
    width: 78px;
    height: 64px;
    padding: 7px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    opacity: 0.72;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.product-thumbnail:hover {
    border-color: var(--brand);
    opacity: 1;
    transform: translateY(-1px);
}

.product-thumbnail.is-active {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(18, 59, 112, 0.16);
    opacity: 1;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary {
    padding: 34px;
    min-width: 0;
}

.product-oem {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-summary h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.related-products {
    margin-top: 34px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-product-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.related-product-card__image {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.related-product-card__image img {
    max-height: 160px;
    object-fit: contain;
}

.related-product-card__body {
    display: grid;
    gap: 10px;
}

.related-product-card__oem {
    margin: 0;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.related-product-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.related-product-card__summary,
.related-product-card__sku {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.related-product-card__price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.related-product-data-container {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.product-short-description {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 58ch;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}

.product-meta div,
.variant-card dl div {
    padding: 8px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}

dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

dd {
    margin: 0;
    font-weight: 650;
}

.product-price {
    margin: 8px 0;
    padding: 8px;
    background: var(--accent);
    border: 1px solid #d6e7ff;
    border-radius: var(--radius-sm);
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand);
}

.price-quote {
    color: var(--brand-dark);
}

.product-primary-sku {
    margin-bottom: 24px;
    color: var(--muted);
}

.product-primary-sku strong {
    color: var(--text);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.1rem;
    border: 1px solid transparent;
    font-weight: 750;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(18, 59, 112, 0.22);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: #ffffff;
    color: var(--brand);
    border-color: var(--border);
}

.btn-small {
    min-height: 38px;
    padding: 0.65rem 0.9rem;
    background: var(--brand);
    color: #ffffff;
    font-size: 0.9rem;
}

.product-highlights,
.product-overview,
.product-variants,
.product-specifications,
.product-documents,
.product-features, 
.product-use-cases,
.product-support,
.product-procurement-note {
    margin-top: 24px;
    padding: 28px;
}

.product-overview,
.product-specifications {
    min-width: 0;
}

.product-highlights h2,
.product-overview h2,
.product-variants h2,
.product-specifications h2,
.product-documents h2 {
    margin: 0 0 18px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

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

.highlight-card {
    padding: 18px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.highlight-card h3 {
    margin: 0 0 6px;
    color: var(--brand);
    font-size: 0.95rem;
}

.highlight-card p,
.product-overview p {
    margin: 0;
    color: var(--muted);
}

.variant-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.variant-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.variant-card h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
}

.variant-card dl {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.product-specifications th,
.product-specifications td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
    vertical-align: top;
}

.product-specifications th {
    width: 32%;
    background: #f8fafc;
    color: var(--text);
    font-weight: 750;
}

.product-specifications td {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.product-specifications tr:last-child th,
.product-specifications tr:last-child td {
    border-bottom: 0;
}

.product-documents ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-documents li {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: #f8fafc;
}

.product-documents a {
    display: block;
    padding: 14px 16px;
    color: var(--brand);
    font-weight: 700;
}

.product-documents a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .product-hero {
    grid-template-columns: 1fr;
    }

    .product-media {
    min-height: 300px;
    }

    .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .variant-list {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .product-page {
    padding: 20px 14px 44px;
    }

    .product-summary,
    .product-highlights,
    .product-overview,
    .product-variants,
    .product-specifications,
    .product-documents {
    padding: 20px;
    }

    .product-media {
    padding: 20px;
    }

    .product-image-area {
    min-height: 260px;
    padding: 14px 44px;
    }

    .product-image-nav {
    width: 34px;
    height: 34px;
    }

    .product-image-prev {
    left: 8px;
    }

    .product-image-next {
    right: 8px;
    }

    .product-thumbnail {
    flex-basis: 68px;
    width: 68px;
    height: 58px;
    }

    .product-meta,
    .highlight-grid {
    grid-template-columns: 1fr;
    }

    .product-actions {
    flex-direction: column;
    }

    .btn {
    width: 100%;
    }

    .product-specifications th,
    .product-specifications td {
    display: block;
    width: 100%;
    }

    .product-specifications th {
    border-bottom: 0;
    padding-bottom: 4px;
    }

    .product-specifications td {
    padding-top: 4px;
    }
}



/*Search page*/


  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  button,
  input,
  select {
    font: inherit;
  }

  .search-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 20px 24px
  }

  .search-header {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    margin-bottom: 1rem;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .eyebrow {
    margin: 0 0 6px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .search-header h1 {
    margin: 0;
    /*font-size: clamp(2rem, 4vw, 3rem);*/
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .search-context {
    margin: 10px 0 0;
    color: var(--muted);
  }

  .search-form {
    width: min(100%, 460px);
  }

  .search-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .search-box {
    display: flex;
    gap: 10px;
  }

  .search-box input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
  }

  .search-box button,
  .results-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 750;
    cursor: pointer;
  }

  .search-box button {
    background: var(--brand);
    color: #fff;
  }

  .search-box button:hover {
    background: var(--brand-dark);
  }

  .search-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .search-filters,
  .search-results {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .search-filters {
    position: sticky;
    top: 20px;
    padding: 22px;
  }

  .search-filters h2 {
    margin: 0 0 18px;
    font-size: 1.2rem;
  }

  .search-filters fieldset {
    margin: 0 0 20px;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .search-filters legend {
    margin-bottom: 10px;
    font-weight: 800;
  }

  .search-filters label {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 9px 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .search-results {
    padding: 18px;
  }

  .results-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 10px;
    /*padding-bottom: 18px;*/
    border-bottom: 1px solid var(--border-soft);
  }

  .results-toolbar p {
    margin: 0;
    color: var(--muted);
  }

  .result-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
  }

  .result-view-toggle-label {
    padding: 0 6px 0 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .result-view-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
  }

  .result-view-toggle-button:hover {
    color: var(--brand);
  }

  .result-view-toggle-button[aria-pressed="true"] {
    background: #ffffff;
    color: var(--brand);
    border-color: var(--border);
    box-shadow: 0 4px 12px rgba(20, 35, 60, 0.08);
  }

  .results-controls {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
  }

  .results-controls label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .results-controls select {
    height: 38px;
    padding: 0 34px 0 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
  }

  .results-controls button {
    background: #fff;
    color: var(--brand);
    border-color: var(--border);
  }

  .product-result-list {
    display: grid;
    gap: 16px;
  }

  .search-display {
    display: grid;
    gap: 16px;
  }

  .product-result-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 170px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .product-result-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 130px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .product-result-image img {
    object-fit: contain;
  }

  .product-oem {
    margin: 0 0 4px;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-result-body h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .product-title-toggle {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .product-result-body h2 a:hover,
  .product-title-toggle:hover {
    color: var(--brand);
    text-decoration: underline;
  }

  .product-result-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
    gap: 8px 14px;
    min-width: 0;
  }

  .product-oem,
  .product-result-body h2,
  .product-result-meta {
    grid-column: 1 / -1;
  }

  .product-description {
    grid-column: 1;
    margin: 0;
    color: var(--muted);
  }

  .product-result-meta {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) minmax(220px, 1fr);
    gap: 8px;
    margin: 0;
  }

  .product-result-meta div {
    padding: 10px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
  }

  .product-result-meta dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .product-result-meta dd {
    margin: 0;
    font-weight: 700;
  }

  .product-result-meta ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .product-result-meta li {
    padding: 4px 8px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .product-result-actions {
    display: grid;
    gap: 10px;
    justify-items: stretch;
  }

  .product-data-container {
    display: grid;
    gap: 8px;
  }

  .product-detail-data-container {
	  margin: 0 60px;
	}

  .product-data-container .qty-control {
    display: grid;
    grid-template-columns: 36px minmax(44px, 1fr) 36px;
    min-height: 38px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
  }

  .product-data-container .qty-btn {
    display: grid;
    place-items: center;
    border: 0;
    background: #f8fafc;
    color: var(--brand);
    font-weight: 900;
    cursor: pointer;
  }

  .product-data-container .qty-btn:hover {
    background: var(--accent);
  }

  .product-data-container .qty-input {
    width: 100%;
    border: 0;
    border-inline: 1px solid var(--border-soft);
    text-align: center;
    font-weight: 800;
    outline: 0;
  }

  .product-data-container .update-summary {
    background: #5b2c83;
    color: #ffffff;
  }

  .product-data-container .in-summary {
    background: darkolivegreen;
    color: #ffffff;
  }

  .product-data-container .remove-from-summary {
    background: crimson;
    color: #ffffff;
  }

  .variant-collapse {
    margin-top: 12px;
    border-top: 1px solid var(--border-soft);
  }

  .variant-collapse summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--brand);
    font-weight: 800;
    cursor: pointer;
  }

  .variant-collapse summary:hover {
    color: var(--brand-dark);
  }

  .variant-list-compact {
    display: grid;
    gap: 8px;
    margin-top: 10px;
  }

  .variant-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
  }

  .variant-row:hover {
    border-color: var(--border);
    background: var(--accent);
  }

  .variant-row small {
    flex: 0 0 auto;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
  }

  .price-quote {
    display: block;
    padding: 12px;
    color: var(--brand-dark);
    background: var(--accent);
    border: 1px solid #d6e7ff;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-align: center;
  }

  .pagination {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
  }

  .pagination-current {
    margin-right: 8px;
    color: var(--muted);
    font-weight: 700;
  }

  .pagination a, .pagination-nav {
    min-width: 38px;
    padding: 8px 5px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--brand);
    font-weight: 500;
  }

  .pagination-nav:hover {
      background-color: var(--muted);
      color: var(--accent);
  }
  .pagination a[aria-current="page"] {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
  }

  #next-page-btn, #prev-page-btn, .page-btn {
    cursor: pointer;
  }

  @media (max-width: 1160px) {
    .search-header {
      display: block;
    }

    .search-form {
      margin-top: 22px;
      width: 100%;
    }

    .search-layout {
      grid-template-columns: 1fr;
    }

    .search-filters {
      position: static;
    }

    .product-result-card {
      grid-template-columns: 130px minmax(0, 1fr);
    }

    .product-result-actions {
      grid-column: 1 / -1;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: center;
    }
  }

  @media (max-width: 680px) {
    .search-page {
      padding: 10px 10px 20px;
      max-width: 100%;
    }

    .search-header,
    .search-results,
    .search-filters {
      padding: 20px;
    }

    .search-box,
    .results-toolbar,
    .results-controls {
      display: grid;
      width: 100%;
    }

    .result-view-toggle {
      width: 100%;
      justify-content: center;
    }

    .result-view-toggle-button {
      flex: 1;
      justify-content: center;
    }

    .product-result-card {
      grid-template-columns: 1fr;
    }

    .product-result-image {
      min-height: 180px;
      height: fit-content;
    }

    .product-result-meta {
      grid-template-columns: 1fr;
    }

    .product-result-body {
      grid-template-columns: 1fr;
    }

    .product-description {
      grid-column: 1;
    }

    .product-result-actions {
      grid-template-columns: 1fr;
    }

    .variant-row {
      display: grid;
      gap: 4px;
    }

    .variant-row small {
      white-space: normal;
    }

    .btn,
    .search-box button,
    .results-controls button {
      width: 100%;
    }
  }



  /*logo icon styling*/


  .ccs-cc-ficons-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
    place-content: center;
    justify-items: center;
    margin: 16px 0;
    padding: 0;
  }

  .ccs-cc-ficons-item {
      width: 5rem;
      place-content: center;
      justify-items: center;
    height: 44px;
    border: 1px solid #d8dce2;
    border-radius: 10px;
    background: #fff;
    color: #1f2933;
    text-decoration: none;

    /*display: inline-flex;*/
    align-items: center;
    justify-content: center;

    transition:
      border-color 0.15s ease,
      background-color 0.15s ease,
      box-shadow 0.15s ease,
      transform 0.15s ease;
  }

  .ccs-cc-ficons-item:hover {
    border-color: #9aa4b2;
    background: #f7f9fb;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
  }

  .ccs-cc-ficons-item:focus-visible {
    outline: 2px solid #111827;
    outline-offset: 3px;
  }

  .ccs-cc-ficons-item span {
    width: 22px;
    height: 22px;
    display: block;
    background-color: currentColor;

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  /* Media */
  .ccs-cc-ficons-item[data-section="media"] span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 16l-5-5-4 4-2-2-5 5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 16l-5-5-4 4-2-2-5 5'/%3E%3C/svg%3E");
  }

  /* Features */
  .ccs-cc-ficons-item[data-section="features"] span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3Cpath d='M4 5h16'/%3E%3Cpath d='M4 19h16'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3Cpath d='M4 5h16'/%3E%3Cpath d='M4 19h16'/%3E%3C/svg%3E");
  }

  /* Documents */
  .ccs-cc-ficons-item[data-section="documents"] span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M7 3h7l5 5v13H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M10 13h6'/%3E%3Cpath d='M10 17h6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M7 3h7l5 5v13H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M10 13h6'/%3E%3Cpath d='M10 17h6'/%3E%3C/svg%3E");
  }
  .ccs-cc-ficons-item {
    position: relative;
  }

  .ccs-cc-ficons-item::after {
    content: attr(data-section-title);
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #5f6b7a;
    white-space: nowrap;
  }

  ul {
	  list-style: inside;
  }
