/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.product-system-grid .project-overlay {
    padding: 18px;
}

.product-system-grid .project-overlay h4 {
    display: flex;
    align-items: flex-end;
    min-height: 2.4em;
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.2;
}

.product-system-grid .project-overlay small {
    display: block;
    min-height: 2.8em;
    line-height: 1.4;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer-social {
    display: grid;
    grid-template-columns: repeat(4, 38px);
    gap: 10px;
}

.footer-social .btn {
    margin: 0;
    border-color: rgba(255, 255, 255, .35);
}

.footer-social .btn:hover,
.footer-social .btn:focus {
    border-color: var(--bs-primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** IanProject cabinetry preview ***/
body {
    font-size: 17px;
    line-height: 1.75;
}

p {
    font-size: 17px;
    line-height: 1.75;
}

.product-options-table {
    min-width: 1180px;
    font-size: .88rem;
}

.product-options-table thead th {
    background: #173f3b;
    color: #fff;
    white-space: nowrap;
}

.product-options-table th,
.product-options-table td {
    padding: .85rem;
}

.product-options-table td small,
.product-options-table th small {
    display: block;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.35;
}

.product-options-table thead small {
    color: rgba(255, 255, 255, .75);
}

.navbar-brand .site-brand {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.04em;
}

.navbar .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
}

.hero-kicker {
    margin-bottom: 18px;
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
}

.hero-header .display-1 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.header-carousel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.project-item img {
    height: 300px;
    object-fit: cover;
}

.service-item .service-img img {
    height: 285px;
    object-fit: cover;
}

.newsletter img {
    height: 510px;
    object-fit: cover;
}

/*** Product catalogue ***/
.product-catalog-page .wow {
    visibility: visible !important;
    animation-name: none !important;
}

.catalog-preview-note {
    border-left: 4px solid var(--bs-primary);
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-filter {
    border: 1px solid rgba(17, 49, 48, .25);
    background: #fff;
    color: var(--bs-dark);
    padding: 10px 16px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    transition: .2s ease;
}

.catalog-filter:hover,
.catalog-filter.active {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

.catalog-controls {
    display: flex;
    gap: 12px;
}

.catalog-controls .form-control {
    min-width: 240px;
}

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

.catalog-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 620px;
    border: 1px solid rgba(17, 49, 48, .14);
    background: #fff;
    min-width: 0;
}

.catalog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bs-light);
    min-height: 0;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.catalog-card-series .catalog-card-image img {
    object-fit: contain;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.03);
}

.catalog-card-image .badge {
    position: absolute;
    top: 16px;
    left: 16px;
}

.catalog-card-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 18px;
}

.catalog-card-body > p:not(.catalog-card-meta) {
    flex-grow: 1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 10px;
}

.catalog-card h3 a {
    color: var(--bs-dark);
}

.catalog-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 50px;
    font-size: 21px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.catalog-card-meta {
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.catalog-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    margin-top: 12px;
}

.catalog-price strong {
    color: var(--bs-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
}

.catalog-card-body .btn {
    padding: 9px 11px;
    font-size: 13px;
}

.catalog-price small {
    color: #6c757d;
}

.catalog-price-pending strong {
    font-size: 18px;
}

.catalog-price-pending small {
    display: block;
    width: 100%;
}

.catalog-price-note {
    margin-top: 14px;
    color: #6c757d;
    font-size: 14px;
}

.catalog-empty {
    grid-column: 1 / -1;
    border: 1px dashed rgba(17, 49, 48, .3);
    padding: 48px;
    text-align: center;
}

.product-detail-image {
    overflow: hidden;
    background: var(--bs-light);
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-gallery-thumb {
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--bs-light);
    cursor: pointer;
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible,
.product-gallery-thumb.active {
    border-color: var(--bs-primary);
}

/* Product pages use a clean landscape hero without a thumbnail strip. */
.product-detail-image {
    position: relative;
    aspect-ratio: 3 / 2;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}

.product-gallery-thumbs {
    display: none;
}

.product-direct-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-direct-image {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--bs-light);
}

.product-direct-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-direct-gallery-natural .product-direct-image {
    overflow: visible;
    aspect-ratio: auto;
    background: transparent;
}

.product-direct-gallery-natural .product-direct-image img {
    height: auto;
    object-fit: contain;
}

.countertop-detail .product-detail-image {
    aspect-ratio: auto;
}

.countertop-detail .product-detail-image img,
.countertop-detail .product-direct-image img {
    object-fit: contain;
}

.countertop-detail .product-detail-image img {
    height: auto;
}

.countertop-detail .product-direct-image {
    height: auto;
    aspect-ratio: auto;
    background: #f6f4ef;
}

.countertop-detail .product-direct-image img {
    height: auto;
}

/* Quartz collection charts use a dedicated hero crop; gallery images retain natural dimensions. */
.countertop-detail.quartz-series-detail .product-detail-image {
    aspect-ratio: 2628 / 1896;
}

.countertop-detail.quartz-series-detail .product-detail-image img {
    height: 100%;
    object-fit: cover;
}

.product-description-copy {
    max-width: 920px;
    color: #5b5852;
    line-height: 1.8;
}

.product-faq-item {
    border-top: 1px solid #dedbd3;
    padding: 18px 0;
}

.product-faq-item:last-child {
    border-bottom: 1px solid #dedbd3;
}

.product-faq-item h3 {
    margin: 0;
    color: var(--bs-dark);
    font-size: 18px;
}

.product-faq-item p {
    margin: 12px 0 0;
    color: #5b5852;
    line-height: 1.75;
}

.product-contact-panel {
    padding: 32px;
    color: #fff;
    background: var(--bs-dark);
}

.product-contact-panel h2,
.product-contact-panel p {
    color: #fff;
}

@media (max-width: 767.98px) {
    .product-direct-gallery {
        gap: 16px;
    }
}

.product-highlights li {
    margin-bottom: 10px;
}

.product-spec-table th {
    width: 34%;
    color: var(--bs-dark);
}

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

.product-option-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--bs-light);
}

.product-option-list i {
    margin-top: 5px;
}

.product-configuration-table {
    min-width: 920px;
}

.product-configuration-table thead th {
    color: #fff;
    background: var(--bs-dark);
    white-space: nowrap;
}

.product-configuration-table tbody th {
    color: var(--bs-primary);
    text-align: center;
}

.product-commercial-table th {
    width: 28%;
    color: var(--bs-dark);
}

.product-info-note {
    max-width: 920px;
    margin: 20px 0 0;
    color: #617574;
}

@media (max-width: 767.98px) {
    .product-option-list {
        grid-template-columns: 1fr;
    }

    .product-commercial-table th {
        width: 40%;
    }
}

@media (max-width: 1199.98px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .header-carousel img {
        height: 420px;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr;
    }

    .catalog-controls {
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    body,
    p {
        font-size: 16px;
    }

    .hero-header .display-1 {
        font-size: clamp(36px, 10vw, 42px);
        overflow-wrap: anywhere;
    }

    .hero-header h5.border {
        display: block !important;
        padding: 1rem 1.25rem !important;
    }

    .header-carousel img {
        height: 320px;
    }

    .newsletter img {
        height: 320px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-controls {
        flex-direction: column;
    }

    .catalog-controls .form-control {
        min-width: 0;
    }

    .catalog-empty {
        padding: 32px 20px;
    }

}

/*** Content frameworks ***/
.page-intro {
    max-width: 760px;
}

.content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}

.content-main > * + * {
    margin-top: 28px;
}

.content-main h2 {
    margin-top: 48px;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.content-panel {
    border-left: 4px solid var(--bs-primary);
    background: var(--bs-light);
    padding: 28px;
}

.content-panel + .content-panel {
    margin-top: 24px;
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: var(--bs-secondary);
    font-size: 14px;
}

.framework-note {
    border: 1px dashed rgba(17, 49, 48, .35);
    background: #fff;
    padding: 20px 24px;
}

.case-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17, 49, 48, .14);
}

.case-fact {
    background: #fff;
    padding: 24px;
}

.case-fact small {
    display: block;
    margin-bottom: 8px;
    color: var(--bs-primary);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.case-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.case-gallery img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid rgba(17, 49, 48, .14);
}

.market-map-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    background: #f6f4ef;
}

.factory-video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--dark);
}

.factory-video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.process-step-card {
    height: 100%;
    padding: 32px;
    border: 1px solid rgba(17, 49, 48, .12);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(17, 49, 48, .1);
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.process-step-top span {
    color: var(--primary);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.process-step-top i {
    color: var(--primary);
    font-size: 2.4rem;
}

.process-step-card-primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.process-step-card-primary h4,
.process-step-card-primary .process-step-top span,
.process-step-card-primary .process-step-top i {
    color: #fff;
}

@media (max-width: 991.98px) {
    .animated.slideInLeft,
    .animated.slideInRight {
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }

    .market-map-image {
        height: auto;
        min-height: 0;
    }

    .content-shell {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

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

@media (max-width: 575.98px) {
    .case-facts,
    .case-gallery {
        grid-template-columns: 1fr;
    }
}

.flooring-product-heading {
    margin-bottom: 48px;
}

.flooring-product-heading h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.flooring-product-heading p { max-width: 760px; color: #6b6f6d; line-height: 1.7; }
.flooring-showcase { display: grid; grid-template-columns: minmax(360px, 40%) 1fr; border: 1px solid #dce4dd; }
.flooring-colours { padding: 42px; background: #fff; }
.flooring-colours h2 { margin-bottom: 28px; }
.flooring-swatch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flooring-swatch { overflow: hidden; border: 1px solid #dce4dd; background: #fff; }
.flooring-swatch img { display: block; width: 100%; aspect-ratio: 3.8 / 1; object-fit: cover; }
.flooring-swatch span { display: block; padding: 8px 9px; color: #113130; font-size: .72rem; font-weight: 700; }
.flooring-palette-image { display: block; width: 100%; height: auto; max-height: 660px; object-fit: contain; object-position: top center; }

.process-notice { display: flex; gap: 16px; padding: 22px; border-left: 3px solid var(--primary); background: #fff; }
.process-notice i { margin-top: 4px; color: var(--primary); font-size: 1.25rem; }
.commercial-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.commercial-check-grid article { padding: 26px; border: 1px solid #dce4dd; background: #fff; }
.commercial-check-grid i { color: var(--primary); font-size: 1.5rem; }
.commercial-check-grid h3 { margin: 14px 0 8px; font-size: 1.2rem; }
.commercial-check-grid p { margin: 0; color: #656d69; line-height: 1.65; }
.category-control-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.category-control-grid article { padding: 30px; border-top: 3px solid var(--primary); background: #f3f7f4; }
.category-control-grid h3 { margin-bottom: 18px; font-size: 1.3rem; }
.category-control-grid ul { margin: 0; padding-left: 18px; }
.category-control-grid li { margin-bottom: 10px; color: #5f6763; line-height: 1.55; }
.shipment-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.shipment-checklist li { position: relative; padding: 12px 12px 12px 38px; border: 1px solid rgba(255,255,255,.16); }
.shipment-checklist li::before { position: absolute; left: 14px; color: var(--primary); content: "\2713"; font-weight: 700; }
.shipment-stage { height: 100%; padding: 28px; border: 1px solid rgba(255,255,255,.16); }
.shipment-stage span { color: var(--primary); font-weight: 700; }
.shipment-stage h3 { margin: 12px 0; color: #fff; font-size: 1.25rem; }
.shipment-stage p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }

.custom-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.custom-capability-grid article { height: 100%; padding: 30px; border: 1px solid #dce4dd; background: #fff; }
.custom-capability-grid i { color: var(--primary); font-size: 1.65rem; }
.custom-capability-grid h3 { margin: 18px 0 10px; font-size: 1.25rem; }
.custom-capability-grid p { margin: 0; color: #626b67; line-height: 1.65; }
.custom-product-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.custom-product-list span { padding: 18px 20px; border-left: 3px solid var(--primary); background: #f3f7f4; color: var(--dark); font-weight: 600; }
.custom-audience-card { height: 100%; padding: 28px; border: 1px solid rgba(255,255,255,.16); }
.custom-audience-card h3 { color: #fff; font-size: 1.25rem; }
.custom-audience-card p { margin: 12px 0 0; color: rgba(255,255,255,.64); line-height: 1.65; }
.custom-process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.custom-process-list li { padding: 24px; border-top: 3px solid var(--primary); background: #f3f7f4; }
.custom-process-list span { color: var(--primary); font-weight: 700; }
.custom-process-list h3 { margin: 14px 0 8px; font-size: 1.15rem; }
.custom-process-list p { margin: 0; color: #626b67; font-size: .94rem; line-height: 1.6; }
.custom-brief-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 0; padding: 0; list-style: none; }
.custom-brief-list li { position: relative; padding: 15px 16px 15px 42px; border: 1px solid #dce4dd; background: #fff; }
.custom-brief-list li::before { position: absolute; left: 16px; color: var(--primary); content: "\2713"; font-weight: 700; }

@media (max-width: 991.98px) {
    .category-control-grid { grid-template-columns: 1fr 1fr; }
    .custom-capability-grid { grid-template-columns: 1fr 1fr; }
    .custom-process-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .commercial-check-grid, .category-control-grid, .shipment-checklist { grid-template-columns: 1fr; }
    .custom-capability-grid, .custom-product-list, .custom-process-list, .custom-brief-list { grid-template-columns: 1fr; }
}
.flooring-application { display: flex; flex-direction: column; background: #113130; }
.flooring-application-image { position: relative; flex: 1; min-height: 590px; overflow: hidden; }
.flooring-application-image img { width: 100%; height: 100%; object-fit: cover; }
.flooring-application-image span { position: absolute; right: 18px; bottom: 18px; padding: 8px 10px; background: rgba(255,255,255,.92); font-size: .72rem; font-weight: 700; }
.flooring-catalogue-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 34px; color: #fff; }
.flooring-catalogue-cta small, .flooring-catalogue-cta strong { display: block; }
.flooring-catalogue-cta small { color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; }
.flooring-catalogue-cta strong { margin-top: 5px; font-size: 1.2rem; }
.flooring-product-info { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; padding: 72px 0 24px; }
.flooring-product-info p { color: #6b6f6d; line-height: 1.75; }

@media (max-width: 991.98px) {
    .flooring-product-heading, .flooring-showcase, .flooring-product-info { grid-template-columns: 1fr; }
    .flooring-application { grid-row: 1; }
    .flooring-application-image { min-height: 58vw; }
}

@media (max-width: 575.98px) {
    .flooring-product-heading { gap: 24px; }
    .flooring-colours { padding: 28px 20px; }
    .flooring-catalogue-cta { align-items: flex-start; flex-direction: column; }
    .flooring-catalogue-cta .btn { width: 100%; }
}
