
/* Governed product and commerce navigation. */
.bfs-product-shell .bfs-product-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    font-size: 0.92rem;
    font-weight: 650;
}

.bfs-product-shell .bfs-product-nav a {
    color: #174f8a;
    text-decoration: none;
}

.bfs-product-shell .bfs-product-nav a:hover,
.bfs-product-shell .bfs-product-nav a:focus-visible {
    text-decoration: underline;
}

.bfs-product-shell .bfs-product-purchase {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #c6d7df;
}

.bfs-product-shell .bfs-product-purchase__status {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid #e2c392;
    border-left: 5px solid #c17820;
    border-radius: 8px;
    background: #fff4e3;
    color: #17242d;
}

.bfs-product-shell
.bfs-product-purchase__status strong {
    color: #173b54;
}

.bfs-product-shell
.bfs-product-purchase__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bfs-product-shell .bfs-product-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.7rem 1.15rem;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
}

.bfs-product-shell
.bfs-product-action--primary {
    border: 1px solid #173b54;
    background: #173b54;
    color: #ffffff;
}

.bfs-product-shell
.bfs-product-action--secondary {
    border: 1px solid #173b54;
    background: #ffffff;
    color: #173b54;
}

.bfs-product-shell
.bfs-product-section-label {
    margin: 0 0 1.25rem;
    color: #5a6870;
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bfs-product-shell
.bfs-product-description__content > :first-child {
    margin-top: 0;
}

@media (max-width: 720px) {
    .bfs-product-shell .bfs-cart-header__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .bfs-product-shell .bfs-product-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
    }
}

/* BiS-RC1 product image and purchase layout. */
.bfs-product-shell .bfs-product-card {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.bfs-product-shell .bfs-product-media {
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.5rem;
    border: 1px solid #c6d7df;
    border-radius: 10px;
    background: #ffffff;
}

.bfs-product-shell .bfs-product-image {
    display: block;
    width: 100%;
    max-width: 245px;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.bfs-product-shell .bfs-product-description {
    grid-column: 1 / -1;
}

@media (max-width: 760px) {
    .bfs-product-shell .bfs-product-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .bfs-product-shell .bfs-product-media {
        min-height: 180px;
    }

    .bfs-product-shell .bfs-product-description {
        grid-column: auto;
    }
}
