.portfolio-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.portfolio-page {
    background: var(--site-bg);
    color: #1d2129;
    padding: calc(114px + env(safe-area-inset-top, 0px)) 0 calc(74px + env(safe-area-inset-bottom, 0px));
}

.portfolio-section-heading {
    min-width: 0;
    max-width: 100%;
}

.portfolio-section-heading h1,
.portfolio-section-heading h2 {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-section-heading p:last-child {
    margin: 10px 0 0;
    max-width: 720px;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-shell {
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
}

/* Portfolio routes: calmer touch feedback on phones */
body.is-portfolio {
    -webkit-tap-highlight-color: transparent;
}

.portfolio-intro {
    display: grid;
    grid-template-columns: minmax(260px, 43%) minmax(280px, 1fr);
    gap: 34px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid #d8d8d8;
}

.portfolio-intro__crumb {
    margin: 0 0 10px;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-intro h1 {
    margin: 0;
    color: #1b1f27;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 2.55vw, 42px);
    line-height: 1.03;
    font-weight: 700;
}

.portfolio-intro h1 em {
    font-style: italic;
    font-weight: 500;
    color: #3f434b;
}

.portfolio-intro__text {
    margin: 2px 0 0;
    color: #353a43;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.45;
    font-weight: 500;
}

.portfolio-filters {
    margin-top: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-filters button {
    border: 1px solid #d7d7d7;
    background: #f7f7f7;
    color: #333943;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.portfolio-filters button.is-active {
    border-color: #de9f2b;
    background: #de9f2b;
    color: #fff;
}

.portfolio-category-tabs {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-category-tabs__item {
    min-height: 38px;
    max-width: 100%;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d6d0c7;
    background: #f9f7f3;
    color: #333943;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    box-sizing: border-box;
}

.portfolio-category-tabs__item.is-active {
    border-color: #de9f2b;
    background: #de9f2b;
    color: #ffffff;
}

.portfolio-category-tabs__item.is-muted {
    background: #f2f0ec;
    color: #7a7f87;
}

.portfolio-category-landing {
    margin-top: 30px;
}

.portfolio-category-landing__head {
    max-width: 760px;
}

.portfolio-category-grid {
    --cg-gap: 18px;
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--cg-gap);
}

/* Two per row on smaller screens; last row centers when only one card. */
.portfolio-category-grid > * {
    min-width: 0;
    box-sizing: border-box;
    flex: 1 1 calc((100% - var(--cg-gap)) / 2);
    max-width: calc((100% - var(--cg-gap)) / 2);
}

/* Desktop: up to three per row; two (or one) cards stay centered as a group. */
@media (min-width: 1041px) {
    .portfolio-category-grid > * {
        flex: 0 1 calc((100% - 2 * var(--cg-gap)) / 3);
        max-width: calc((100% - 2 * var(--cg-gap)) / 3);
    }
}

.portfolio-category-card {
    color: inherit;
    text-decoration: none;
    background: var(--site-surface);
    border: 1px solid #ddd6cb;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    min-width: 0;
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(31, 36, 48, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 44px rgba(31, 36, 48, 0.1);
    }
}

.portfolio-category-card.is-muted {
    background: var(--site-surface);
    box-shadow: none;
}

.portfolio-category-card.is-muted:hover {
    transform: none;
}

.portfolio-category-card.is-static {
    cursor: default;
}

.portfolio-category-card.is-static:hover {
    transform: none;
}

.portfolio-category-card__media {
    aspect-ratio: 16 / 10;
    background: var(--site-bg);
    min-width: 0;
}

.portfolio-category-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.portfolio-category-card__body {
    padding: 22px;
    min-width: 0;
    max-width: 100%;
}

.portfolio-category-card__eyebrow {
    margin: 0;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.portfolio-category-card__body h3 {
    margin: 12px 0 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.12;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-category-card__body p:last-of-type {
    margin: 10px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-category-card__cta {
    margin-top: 18px;
    display: inline-flex;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #de9f2b;
    color: #1f2430;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-grid {
    column-count: 3;
    column-gap: 16px;
}

.portfolio-item {
    break-inside: avoid;
    margin: 0 0 14px;
}

.portfolio-item__link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.portfolio-item img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #dfdfdf;
}

.portfolio-item p {
    margin: 6px 2px 0;
    color: #21252d;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.portfolio-item p span {
    color: #7e828a;
    font-size: 11px;
    margin-right: 6px;
}

.portfolio-more {
    margin-top: 10px;
    text-align: center;
}

.portfolio-empty {
    margin: 8px 0 0;
    text-align: center;
    color: #4e535c;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.portfolio-coming {
    margin-top: 28px;
    padding: 44px 28px;
    border: 1px solid #ddd6cb;
    border-radius: 20px;
    background: var(--site-surface);
    text-align: center;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-coming__eyebrow {
    margin: 0 0 10px;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-coming h2 {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-coming__text {
    margin: 14px auto 0;
    max-width: 620px;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.6;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-more button {
    border: 1px solid #d8a446;
    background: transparent;
    color: #1f2430;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.portfolio-action-pair {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-action-pair article {
    text-align: center;
}

.portfolio-action-pair h3 {
    margin: 0;
    color: #de9f2b;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 2vw, 36px);
    line-height: 1.08;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-action-pair p {
    margin: 8px auto 0;
    max-width: 360px;
    color: #4c5159;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.portfolio-action-pair a {
    margin-top: 12px;
    color: #de9f2b;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    text-decoration: none;
    display: inline-flex;
}

.portfolio-info-row {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-info-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    background: #f6f6f6;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    min-width: 0;
}

.portfolio-info-card img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.portfolio-info-card h4 {
    margin: 2px 0 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 1.6vw, 26px);
    line-height: 1.12;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-info-card p {
    margin: 7px 0 0;
    color: #464b53;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.portfolio-info-card a {
    margin-top: 9px;
    display: inline-flex;
    text-decoration: none;
    border: 1px solid #d8a446;
    color: #1f2430;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portfolio-meta-footer {
    margin-top: 44px;
    border-top: 1px solid #ddddde;
    padding-top: 24px;
}

.portfolio-meta-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-meta-footer h5 {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-meta-footer ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.portfolio-meta-footer li,
.portfolio-meta-footer p {
    margin: 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    line-height: 1.45;
}

.portfolio-meta-footer__grid a {
    margin-top: 12px;
    display: inline-flex;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #de9f2b;
    border-radius: 999px;
    background: #de9f2b;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-meta-footer__bottom {
    margin-top: 20px;
    border-top: 1px solid #dfdfdf;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.portfolio-meta-footer__bottom span {
    color: #de9f2b;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: lowercase;
}

.portfolio-meta-footer__bottom p {
    margin: 0;
    color: #6a7078;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
}

.portfolio-folder-page {
    background: var(--site-bg);
    color: #1d2129;
    padding: calc(114px + env(safe-area-inset-top, 0px)) 0 calc(74px + env(safe-area-inset-bottom, 0px));
}

.portfolio-category-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.portfolio-category-detail__kicker {
    margin: 14px 0 10px;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-category-detail__cover img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid #ddd6cb;
    object-fit: cover;
    box-shadow: 0 22px 44px rgba(31, 36, 48, 0.1);
}

.portfolio-brand-strip,
.portfolio-product-section,
.portfolio-folder-grid-wrap {
    margin-top: 30px;
}

.portfolio-aluminium-cover {
    margin: 22px 0 0;
}

.portfolio-aluminium-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid #ddd6cb;
    object-fit: contain;
    background: #f4f3ef;
    image-rendering: auto;
}

.portfolio-aluminium-empty {
    margin: 18px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    max-width: 52ch;
}

.portfolio-brand-strip__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.portfolio-brand-strip--aluminium-only .portfolio-brand-strip__grid {
    grid-template-columns: minmax(0, 240px);
    max-width: 240px;
}

.portfolio-brand-strip__item {
    background: var(--site-surface);
    border: 1px solid #ddd6cb;
    border-radius: 18px;
    min-height: 118px;
    min-width: 0;
    padding: 18px 14px;
    display: grid;
    place-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-brand-strip__item:hover {
        transform: translateY(-2px);
        border-color: #de9f2b;
        background: var(--site-surface-elevated);
        box-shadow: 4px 12px 28px rgba(31, 36, 48, 0.12);
    }
}

.portfolio-brand-strip__item:focus-visible {
    outline: 2px solid #de9f2b;
    outline-offset: 3px;
}

.portfolio-brand-strip__item img {
    max-width: 150px;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.portfolio-brand-strip__item span {
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    max-width: 100%;
}

.portfolio-product-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-product-section__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.portfolio-product-section__topline h2 {
    min-width: 0;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-product-section__reset {
    display: inline-flex;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #de9f2b;
    color: #1f2430;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-product-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ddd6cb;
    background: var(--site-surface);
    min-width: 0;
}

.portfolio-product-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.portfolio-product-section--aluminium .portfolio-product-card img {
    object-fit: contain;
    background: #f4f3ef;
    aspect-ratio: 4 / 3;
}

.portfolio-product-card__body {
    padding: 18px;
    min-width: 0;
    max-width: 100%;
}

.portfolio-product-card__brand {
    margin: 0;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.portfolio-product-card__body h3 {
    margin: 10px 0 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.12;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-product-card__body p:last-child {
    margin: 10px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-product-card--link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-product-card--link:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 42px rgba(31, 36, 48, 0.12);
    }
}

.portfolio-product-card--link:focus-visible {
    outline: 2px solid #de9f2b;
    outline-offset: 3px;
}

/* Wardrobe product detail — plain layout */
.portfolio-furniture-product-detail__grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.portfolio-product-carousel {
    display: grid;
    gap: 12px;
    -webkit-user-select: none;
    user-select: none;
}

.portfolio-product-carousel__viewport {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd6cb;
    background: #eee;
    cursor: grab;
    touch-action: none;
}

.portfolio-product-carousel__viewport.is-grabbing {
    cursor: grabbing;
}

.portfolio-product-carousel__viewport img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
}

.portfolio-product-carousel__controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
}

.portfolio-product-carousel__btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.portfolio-product-carousel__btn:hover {
    background: #f5f5f5;
}

.portfolio-product-carousel__btn:focus-visible {
    outline: 2px solid #de9f2b;
    outline-offset: 2px;
}

.portfolio-product-carousel__status {
    margin: 0;
    justify-self: center;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #333;
    -webkit-user-select: text;
    user-select: text;
}

.portfolio-product-carousel__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.portfolio-product-carousel__thumb {
    padding: 0;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    width: 72px;
    height: 54px;
    flex: 0 0 auto;
}

.portfolio-product-carousel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.portfolio-product-carousel__thumb.is-active {
    border-color: #de9f2b;
}

.portfolio-product-carousel__thumb:focus-visible {
    outline: 2px solid #de9f2b;
    outline-offset: 2px;
}

.portfolio-furniture-product-detail__info {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd6cb;
    background: var(--site-surface, #f7f7f5);
}

.portfolio-furniture-product-detail__info-kicker {
    margin: 0 0 8px;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-furniture-product-detail__description {
    margin: 0 0 16px;
    color: #353a43;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.portfolio-furniture-product-detail__specs {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.portfolio-furniture-product-detail__spec-row {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.portfolio-furniture-product-detail__spec-row:last-child {
    border-bottom: none;
}

.portfolio-furniture-product-detail__specs dt {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.portfolio-furniture-product-detail__specs dd {
    margin: 4px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.portfolio-folder-head {
    padding-bottom: 18px;
    border-bottom: 1px solid #d8d8d8;
}

.portfolio-folder-head .portfolio-intro__crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 4px;
}

.portfolio-folder-head .portfolio-intro__crumb a {
    color: #ad7f3e;
    text-decoration: none;
}

.portfolio-folder-head h1 {
    margin: 0;
    color: #1b1f27;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 2.55vw, 42px);
    line-height: 1.03;
    font-weight: 700;
}

.portfolio-folder-head h1 em {
    font-style: italic;
    font-weight: 500;
    color: #3f434b;
}

.portfolio-folder-head p {
    margin: 8px 0 0;
    color: #353a43;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.45;
    font-weight: 500;
}

.portfolio-folder-grid {
    margin-top: 20px;
    column-count: 3;
    column-gap: 16px;
}

.portfolio-folder-item {
    margin: 0 0 14px;
    break-inside: avoid;
}

.portfolio-folder-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #dfdfdf;
}

.portfolio-folder-back {
    margin-top: 10px;
    text-align: center;
}

.portfolio-folder-back a {
    display: inline-flex;
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid #de9f2b;
    border-radius: 999px;
    background: transparent;
    color: #1f2430;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1040px) {
    .portfolio-product-grid,
    .portfolio-category-detail__hero {
        grid-template-columns: 1fr;
    }

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

    .portfolio-product-section__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-grid {
        column-count: 2;
    }

    .portfolio-folder-grid {
        column-count: 2;
    }

    .portfolio-intro {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .portfolio-action-pair,
    .portfolio-info-row,
    .portfolio-meta-footer__grid {
        grid-template-columns: 1fr;
    }

    .portfolio-furniture-product-detail__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .portfolio-brand-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-page {
        padding-top: calc(94px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px));
    }

    .portfolio-shell {
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }

    .portfolio-category-tabs {
        gap: 8px;
    }

    .portfolio-category-tabs__item {
        width: 100%;
    }

    .portfolio-grid {
        column-count: 1;
        column-gap: 0;
    }

    .portfolio-folder-page {
        padding-top: calc(94px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px));
    }

    .portfolio-folder-grid {
        column-count: 1;
        column-gap: 0;
    }

    .portfolio-item {
        margin-bottom: 12px;
    }

    .portfolio-item img {
        border-radius: 10px;
    }

    .portfolio-category-card__body,
    .portfolio-product-card__body {
        padding: 16px;
    }

    .portfolio-brand-strip__item {
        min-height: 104px;
    }

    .portfolio-info-card {
        grid-template-columns: 1fr;
    }

    .portfolio-info-card img {
        height: 160px;
    }

    .portfolio-meta-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .portfolio-product-section__reset {
        min-height: 44px;
        padding: 0 18px;
    }

    .portfolio-folder-back a {
        min-height: 44px;
        padding: 0 20px;
    }

    .portfolio-product-carousel__btn {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        font-size: 26px;
    }

    .portfolio-product-carousel__controls {
        padding: 0 6px;
    }

    .portfolio-product-carousel__thumbs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        gap: 10px;
        padding: 4px 2px 10px;
        margin: 0 -4px;
        scrollbar-width: thin;
    }

    .portfolio-product-carousel__thumb {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 68px;
        height: 51px;
    }

    .portfolio-category-card__cta {
        min-height: 44px;
        padding: 0 18px;
    }

    .portfolio-filters button {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .portfolio-category-grid,
    .portfolio-category-grid--three {
        --cg-gap: clamp(8px, 2.5vw, 14px);
    }

    .portfolio-category-card__body {
        padding: 12px 10px;
    }

    .portfolio-category-card__body h3 {
        font-size: clamp(15px, 3.8vw, 22px);
    }

    .portfolio-category-card__body p:last-of-type {
        font-size: 12px;
        line-height: 1.45;
    }

    .portfolio-category-card__cta {
        font-size: 10px;
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .portfolio-intro h1,
    .portfolio-folder-head h1 {
        word-break: break-word;
        hyphens: auto;
    }

    .portfolio-folder-head .portfolio-intro__crumb {
        font-size: 10px;
        letter-spacing: 0.08em;
    }
}

/*
 * Wardrobe product detail — dark mode (this view loads portfolio.css last).
 * Scoped to .portfolio-furniture-product-detail only.
 */
html[data-theme='dark'] .portfolio-furniture-product-detail.portfolio-page {
    color: #ffffff;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__viewport {
    border: none !important;
    background: #0a0a0a;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__btn {
    border: none !important;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__status {
    color: #ffffff !important;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__thumb,
html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__thumb.is-active {
    border: none !important;
    background: transparent;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__thumb:not(.is-active) {
    opacity: 0.5;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-product-carousel__thumb.is-active {
    opacity: 1;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__info,
html[data-theme='dark'] #wardrobe-product-info {
    border: none !important;
    outline: none !important;
    background: transparent;
    box-shadow: none !important;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__info-kicker,
html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__description,
html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__specs dt,
html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__specs dd,
html[data-theme='dark'] #wardrobe-product-info,
html[data-theme='dark'] #wardrobe-product-info h2,
html[data-theme='dark'] #wardrobe-product-info p,
html[data-theme='dark'] #wardrobe-product-info dt,
html[data-theme='dark'] #wardrobe-product-info dd {
    color: #ffffff !important;
}

html[data-theme='dark'] .portfolio-furniture-product-detail .portfolio-furniture-product-detail__spec-row,
html[data-theme='dark'] #wardrobe-product-info .portfolio-furniture-product-detail__spec-row {
    border-bottom: none !important;
}

/* Shared product cards (PVC & aluminium portfolio) */
.portfolio-system-showcase {
    margin-top: 40px;
}

.portfolio-system-showcase__heading p:last-child {
    max-width: 640px;
}

.portfolio-system-showcase__grid {
    margin-top: 22px;
    display: grid;
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

/* Three equal cards per row; 1–2 cards stay centred as a group */
.portfolio-system-showcase__grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-system-showcase__grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-system-showcase__grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
}

.portfolio-system-showcase__grid--cols-1 {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
}

@media (max-width: 1100px) {
    .portfolio-system-showcase__grid--cols-3,
    .portfolio-system-showcase__grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .portfolio-system-showcase__grid--cols-2 {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-inline: auto;
    }
}

/* Keep two cards per row on phones (cols-3 / cols-4); tighten spacing & media height. */
@media (max-width: 540px) {
    .portfolio-system-showcase__grid--cols-3,
    .portfolio-system-showcase__grid--cols-4 {
        gap: 12px;
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__media,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__media {
        height: 140px;
        min-height: 140px;
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__media img,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__media img {
        min-height: 0;
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__body,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__body {
        padding: 14px 12px 12px;
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__summary,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__summary {
        font-size: 13px;
        line-height: 1.45;
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__title,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__title {
        font-size: clamp(16px, 4.2vw, 20px);
    }

    .portfolio-system-showcase__grid--cols-3 .portfolio-system-card__cta,
    .portfolio-system-showcase__grid--cols-4 .portfolio-system-card__cta {
        font-size: 10px;
        letter-spacing: 0.06em;
        padding-top: 12px;
    }
}

.portfolio-system-card {
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    border: 1px solid #ddd6cb;
    background: var(--site-surface);
    box-shadow: 0 2px 14px rgba(31, 36, 48, 0.06);
    overflow: hidden;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-system-card:hover {
        transform: translateY(-4px);
        border-color: rgba(222, 159, 43, 0.65);
        box-shadow: 0 22px 48px rgba(31, 36, 48, 0.14);
    }
}

.portfolio-system-card__link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.portfolio-system-card__link:focus-visible {
    outline: 2px solid #de9f2b;
    outline-offset: 3px;
}

.portfolio-system-card__media {
    position: relative;
    flex: 0 0 auto;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eceae4 0%, #f4f3ef 100%);
}

.portfolio-system-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.portfolio-system-card__shine {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(118deg, transparent 40%, rgba(255, 255, 255, 0.14) 48%, transparent 56%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-system-card:hover .portfolio-system-card__shine {
        opacity: 1;
    }
}

.portfolio-system-card__body {
    flex: 1 1 auto;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}

.portfolio-system-card__label {
    margin: 0;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portfolio-system-card__title {
    margin: 10px 0 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 1.85vw, 26px);
    line-height: 1.12;
    font-weight: 700;
}

.portfolio-system-card__summary {
    margin: 10px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    flex: 1 1 auto;
    min-height: 0;
}

.portfolio-system-card__cta {
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f2430;
}

.portfolio-system-card__cta-icon {
    display: inline-flex;
    transition: transform 0.2s ease;
    color: #de9f2b;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-system-card:hover .portfolio-system-card__cta-icon {
        transform: translateX(4px);
    }
}

/* Reynaers aluminium: MasterLine feature option cards (aligned with portfolio-system-card look) */
.portfolio-feature-options {
    margin-top: clamp(40px, 6vw, 72px);
    padding-top: clamp(32px, 5vw, 56px);
    border-top: 1px solid rgba(31, 36, 48, 0.08);
    width: 100%;
    min-width: 0;
}

.portfolio-feature-options--product-detail {
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: clamp(32px, 4vw, 48px);
}

.portfolio-feature-options--secondary {
    margin-top: clamp(32px, 5vw, 56px);
    padding-top: clamp(28px, 4vw, 48px);
}

.portfolio-feature-options__head {
    max-width: 42rem;
    margin: 0 0 clamp(22px, 3.5vw, 36px);
}

.portfolio-feature-options__title {
    margin: 0 0 10px;
    color: #1a365d;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.portfolio-feature-options__subtitle {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.portfolio-feature-options__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 28px);
    width: 100%;
    align-items: stretch;
}

.portfolio-feature-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
    text-align: left;
    border-radius: 20px;
    border: 1px solid #ddd6cb;
    background: var(--site-surface, #faf9f6);
    box-shadow: 0 2px 14px rgba(31, 36, 48, 0.06);
    padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 28px);
    transition:
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-feature-card:hover {
        transform: translateY(-4px);
        border-color: rgba(222, 159, 43, 0.65);
        box-shadow: 0 18px 44px rgba(31, 36, 48, 0.12);
    }
}

.portfolio-feature-card__icon-wrap {
    margin-bottom: 16px;
}

.portfolio-feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eceae4 0%, #f4f3ef 100%);
    border: 1px solid rgba(221, 214, 203, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.portfolio-feature-card__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.portfolio-feature-card__title {
    margin: 0 0 10px;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.portfolio-feature-card__text {
    margin: 0;
    flex: 1 1 auto;
    color: #5c6169;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-options {
    border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-options__title {
    color: #8ba3c4;
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-options__subtitle {
    color: #c8cdd8;
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card__title {
    color: #f0f2f6;
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card__text {
    color: #a8b0c0;
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card__icon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card__icon img {
    filter: brightness(1.35);
}

@media (hover: hover) and (pointer: fine) {
    html[data-theme='dark'] .portfolio-aluminium-page .portfolio-feature-card:hover {
        border-color: rgba(222, 159, 43, 0.45);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    }
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-options {
    border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-options__title {
    color: #8ba3c4;
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-options__subtitle {
    color: #c8cdd8;
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card__title {
    color: #f0f2f6;
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card__text {
    color: #a8b0c0;
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card__icon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card__icon img {
    filter: brightness(1.35);
}

@media (hover: hover) and (pointer: fine) {
    html[data-theme='dark'] .portfolio-aluminium-product-detail .portfolio-feature-card:hover {
        border-color: rgba(222, 159, 43, 0.45);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    }
}

.portfolio-aluminium-detail-header {
    margin-bottom: 8px;
    max-width: 720px;
}

.portfolio-aluminium-detail-header__kicker {
    margin: 0 0 8px;
    color: #ad7f3e;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portfolio-aluminium-detail-header__title {
    margin: 0;
    color: #1f2430;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.1;
    font-weight: 700;
}

.portfolio-aluminium-detail-header__intro {
    margin: 12px 0 0;
    color: #4b5058;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.portfolio-aluminium-product-detail__viewport img,
.portfolio-pvc-product-detail__viewport img {
    object-fit: contain;
    background: #f4f3ef;
}

.portfolio-product-carousel__status--single {
    display: none;
}

/*
 * Aluminium product detail — option cards: 2 per row at all breakpoints (responsive = 2×2, not 1 col).
 */
.portfolio-aluminium-product-detail .portfolio-feature-options__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row dense !important;
    gap: clamp(12px, 2.5vw, 28px) !important;
    width: 100% !important;
    align-items: stretch !important;
}

.portfolio-aluminium-product-detail .portfolio-feature-card {
    box-shadow:
        0 2px 8px rgba(31, 36, 48, 0.05),
        0 14px 36px rgba(31, 36, 48, 0.09);
    border-color: #cfc6ba;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-aluminium-product-detail .portfolio-feature-card:hover {
        box-shadow:
            0 8px 20px rgba(31, 36, 48, 0.08),
            0 22px 50px rgba(31, 36, 48, 0.14);
    }
}
