/* Place in: your_theme/css/finish-selector.css */

.finish-selector {
  background: #000;
  color: #fff;
  font-family: "aktiv-grotesk", sans-serif;
  min-height: 1060px;
}

.finish-selector__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .finish-selector {
  min-height: auto;
}
  .finish-selector__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }
}

.finish-selector__panel {
  padding: 6.4rem;
}

@media (max-width: 767px) {
.finish-selector__panel {
  padding: 16px;
}
}

.finish-selector__heading {
     font-size: 48px;
    font-weight: 700;
    margin: 0 0 6.4rem;
    font-family: "aktiv-grotesk", sans-serif;
}

@media (max-width: 767px) {
  .finish-selector__heading {
    font-size: 24px;
    margin: 0 0 2.4rem;
  }
.finish-selector__panel {
   font-size: 32px;
   margin: 0 0 2.4rem;
}
}

/* Category tabs use Bootstrap's nav-tabs/tab-pane markup and JS.
   These rules only restyle them to match the dark theme -
   visibility/switching is handled by Bootstrap, not this CSS. */


.finish-selector__tabs > li {
  margin: 0;
}





.finish-selector__categories .tab-pane {
    border-bottom: 1px solid white;
}

.colour-group__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-top: 1px solid #fff;
  color: #fff;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 24px;
  padding: 2.4rem 0;
  cursor: pointer;
}

.colour-group__swatches {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
padding-bottom: 24px;
}

.finish-category__groups .colour-group:first-child .colour-group__toggle{
  border-top: none;
}


.colour-group__swatches.is-open {
  display: grid;
}

@media (max-width: 480px) {
  .colour-group__swatches {
    grid-template-columns: repeat(2, 1fr);
  }
}

.finish-swatch {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  background: #0a0a0a;
  border: 1px solid #fff;
  color: #ccc;
  padding: 2.4rem;
  cursor: pointer;
  text-align: left;
}

.finish-swatch.is-active {
  background: #1E1EF5;
  border-color: #1E1EF5;
  color: #fff;
}

.finish-swatch__color {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: #222;
}

.finish-swatch__color img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.finish-swatch__label {
  display: block;
  font-size: 16px;
    font-family: "aktiv-grotesk", sans-serif;
}

.finish-swatch__sublabel {
  display: block;
  font-size: 16px;
    font-family: "aktiv-grotesk", sans-serif;
}

.finish-selector__description {
font-size: 16px;
font-style: normal;
font-weight: 400;
color: white;
margin: 2.4rem 0;
font-family: "aktiv-grotesk", sans-serif;
}

.finish-selector__cta a {
    display: inline-block;
    background: #1E1EF5;
    color: #fff;
    padding: 16px 24px;
    text-decoration: none;
    text-align: center;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.finish-selector__preview {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1060px;
}

.finish-selector__preview-image {
  max-width: 80%;
  max-height: 80%;
}


@media (max-width: 767px) {
.colour-group__toggle {
      font-size: 24px;
    padding: 16px 0;
}
.finish-swatch__label,
.finish-swatch__sublabel {
    font-size: 12px;
}
.finish-swatch {
      padding: 2.8px;
              min-height: 56px;
        gap: 16px;
        justify-content: center;
}

.finish-selector__preview {
      min-height: 230px;
    max-height: 230px;
    overflow: hidden;
    margin: 16px;
}

.finish-selector__preview-image {
    min-height: 230px;
    max-height: 230px;
}
}