/* Catalogue page layout and product detail styles. */
.catalogue-page {
    background: #f5f7fb;
}

.catalogue-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(5, 20, 45, .94), rgba(17, 74, 145, .82)),
        url('../img/carousel-1.jpg') center/cover no-repeat;
    overflow: hidden;
}

.catalogue-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% -10%;
    height: 260px;
    background: #f5f7fb;
    transform: skewY(-4deg);
    transform-origin: left;
}

.catalogue-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 90px 0 130px;
    color: #fff;
}

.catalogue-hero-content h1 {
    color: #fff;
}

.catalogue-eyebrow,
.catalogue-section-heading span {
    display: inline-block;
    color: #2f65b0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 12px;
}

.catalogue-hero .catalogue-eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    padding: 8px 14px;
    border-radius: 999px;
}

.catalogue-hero h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 22px;
    color: #fff;
}

.catalogue-hero p {
    max-width: 720px;
    font-size: 18px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 30px;
}

.catalogue-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.catalogue-hero-actions .btn,
.catalogue-cta .btn {
    min-width: 170px;
    padding: 15px 26px;
    border-radius: 0;
    font-weight: 800;
}

.catalogue-search-section {
    position: relative;
    z-index: 5;
    padding: 40px 0 90px;
}

.catalogue-section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 35px;
}

.catalogue-section-heading h2 {
    color: #071b3a;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 12px;
}

.catalogue-section-heading p {
    color: #637089;
    margin-bottom: 0;
}

.catalogue-filter-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    margin-bottom: 28px;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
    border: 1px solid rgba(7, 27, 58, .06);
}

.catalogue-filter-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr .65fr;
    gap: 16px;
    align-items: end;
}

.catalogue-filter-card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #071b3a;
    margin-bottom: 8px;
}

.catalogue-filter-card .form-control {
    min-height: 54px;
    border-radius: 12px;
    border: 1px solid #dbe2ee;
    color: #071b3a;
    box-shadow: none;
}

.catalogue-filter-card .form-control:focus {
    border-color: #2f65b0;
}

.filter-button-wrap .btn {
    min-height: 54px;
    border-radius: 12px;
    font-weight: 800;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.category-pills a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 999px;
    background: #fff;
    color: #071b3a;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(7, 27, 58, .06);
    border: 1px solid rgba(7, 27, 58, .06);
}

.category-pills a.active,
.category-pills a:hover {
    background: #2f65b0;
    color: #fff;
}

.category-pills span {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 27, 58, .08);
    font-size: 12px;
}

.category-pills a.active span,
.category-pills a:hover span {
    background: rgba(255, 255, 255, .2);
}

.catalogue-alert {
    background: #fff4cf;
    color: #8a6200;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 30px;
    border: 1px solid #ffe49b;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.catalogue-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
    border: 1px solid rgba(7, 27, 58, .06);
    transition: .25s ease;
}

.catalogue-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(7, 27, 58, .14);
}

.catalogue-image {
    position: relative;
    display: block;
    height: 235px;
    background: #eef2f7;
    overflow: hidden;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.catalogue-card:hover .catalogue-image img {
    transform: scale(1.06);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2f65b0;
    color: #fff;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.catalogue-content {
    padding: 24px;
}

.catalogue-category {
    display: block;
    color: #2f65b0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.catalogue-content h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 14px;
    font-weight: 900;
}

.catalogue-content h3 a {
    color: #071b3a;
    text-decoration: none;
}

.catalogue-content h3 a:hover {
    color: #2f65b0;
}

.catalogue-meta {
    background: #f5f7fb;
    border-radius: 14px;
    padding: 14px;
    margin: 15px 0;
    font-size: 14px;
    color: #59677f;
}

.catalogue-meta div {
    margin-bottom: 6px;
}

.catalogue-meta div:last-child {
    margin-bottom: 0;
}

.catalogue-meta strong {
    color: #071b3a;
}

.catalogue-content p {
    color: #637089;
    min-height: 48px;
}

.catalogue-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #edf1f7;
}

.price-label {
    display: block;
    font-weight: 900;
    color: #071b3a;
}

.catalogue-bottom small {
    display: block;
    color: #637089;
}

.catalogue-bottom .btn {
    white-space: nowrap;
    border-radius: 10px;
    font-weight: 800;
    padding: 10px 16px;
}

.catalogue-empty {
    background: #fff;
    border-radius: 24px;
    text-align: center;
    padding: 55px 25px;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
}

.catalogue-empty-icon {
    width: 72px;
    height: 72px;
    background: #eef4ff;
    color: #2f65b0;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.catalogue-empty h3 {
    color: #071b3a;
    font-weight: 900;
}

.catalogue-empty p {
    color: #637089;
    max-width: 560px;
    margin: 0 auto 24px;
}

.catalogue-cta {
    padding: 0 0 90px;
    background: #f5f7fb;
}

.catalogue-cta-box {
    background:
        linear-gradient(135deg, rgba(7, 27, 58, .96), rgba(47, 101, 176, .92)),
        url('../img/carousel-2.jpg') center/cover no-repeat;
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.catalogue-cta-box span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    opacity: .8;
}

.catalogue-cta-box h2 {
    font-weight: 900;
    margin: 8px 0;
    color: #fff;
}

.catalogue-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 991px) {
    .catalogue-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .catalogue-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .catalogue-hero {
        min-height: auto;
    }

    .catalogue-hero-content {
        padding: 70px 0 110px;
    }

    .catalogue-filter-grid,
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalogue-bottom .btn {
        width: 100%;
    }

    .catalogue-cta-box {
        padding: 30px 24px;
    }
}




/* =========================
   PRODUCT DETAIL PAGE ONLY
========================= */

.product-page {
    background: #f5f7fb;
}

.product-page .product-hero {
    background:
        linear-gradient(135deg, rgba(7, 27, 58, .96), rgba(47, 101, 176, .85)),
        url('../img/carousel-1.jpg') center/cover no-repeat;
    padding: 110px 0 140px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.product-page .product-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -90px;
    height: 180px;
    background: #f5f7fb;
    transform: skewY(-4deg);
}

.product-page .product-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.product-page .product-hero span {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.product-page .product-hero h1 {
    color: #fff !important;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 22px;
}

.product-page .product-hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    max-width: 760px;
    margin-bottom: 28px;
}

.product-page .product-detail-section {
    padding: 20px 0 90px;
    position: relative;
    z-index: 5;
}

.product-page .product-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: start;
}

.product-page .product-media-card,
.product-page .product-info-card,
.product-page .product-description-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
    border: 1px solid rgba(7, 27, 58, .06);
}

.product-page .product-media-card {
    padding: 18px;
}

.product-page .product-main-image {
    height: 430px;
    border-radius: 18px;
    background: #eef2f7;
    overflow: hidden;
}

.product-page .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page .product-gallery {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-page .product-gallery img {
    width: 105px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    background: #eef2f7;
    border: 2px solid transparent;
}

.product-page .product-info-card {
    padding: 34px;
}

.product-page .product-info-card .section-label {
    color: #2f65b0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-page .product-info-card h2 {
    color: #071b3a;
    font-size: 34px;
    font-weight: 900;
    margin: 8px 0 24px;
}

.product-page .product-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-page .product-spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 14px 0;
    border-bottom: 1px solid #edf1f7;
    color: #5f6f89;
}

.product-page .product-spec-list li strong {
    color: #071b3a;
    font-weight: 900;
}

.product-page .product-spec-list li span {
    text-align: right;
}

.product-page .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-page .product-actions .btn {
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 900;
}

.product-page .product-description-card {
    padding: 34px;
    margin-top: 34px;
}

.product-page .product-description-card .section-label {
    color: #2f65b0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-page .product-description-card h2 {
    color: #071b3a;
    font-size: 32px;
    font-weight: 900;
    margin: 8px 0 18px;
}

.product-page .product-description-card p {
    color: #5f6f89;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .product-page .product-layout {
        grid-template-columns: 1fr;
    }

    .product-page .product-main-image {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .product-page .product-hero {
        padding: 80px 0 120px;
    }

    .product-page .product-info-card,
    .product-page .product-description-card {
        padding: 24px;
    }

    .product-page .product-main-image {
        height: 280px;
    }

    .product-page .product-spec-list li {
        display: block;
    }

    .product-page .product-spec-list li span {
        display: block;
        text-align: left;
        margin-top: 4px;
    }

    .product-page .product-actions .btn {
        width: 100%;
    }
}




.product-page .product-recommended-section {
    padding: 0 0 90px;
    background: #f5f7fb;
}

.product-page .product-recommended-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
}

.product-page .product-recommended-heading span {
    color: #2f65b0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-page .product-recommended-heading h2 {
    color: #071b3a;
    font-size: 38px;
    font-weight: 900;
    margin: 8px 0 10px;
}

.product-page .product-recommended-heading p {
    color: #637089;
}

.product-page .product-recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.product-page .recommended-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
    border: 1px solid rgba(7, 27, 58, .06);
    transition: .25s ease;
}

.product-page .recommended-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(7, 27, 58, .14);
}

.product-page .recommended-image {
    display: block;
    height: 210px;
    background: #eef2f7;
    overflow: hidden;
}

.product-page .recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.product-page .recommended-card:hover .recommended-image img {
    transform: scale(1.06);
}

.product-page .recommended-content {
    padding: 22px;
}

.product-page .recommended-content>span {
    color: #2f65b0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-page .recommended-content h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 8px 0 10px;
}

.product-page .recommended-content h3 a {
    color: #071b3a;
    text-decoration: none;
}

.product-page .recommended-content h3 a:hover {
    color: #2f65b0;
}

.product-page .recommended-content p {
    color: #637089;
    margin-bottom: 12px;
}

.product-page .recommended-part {
    font-weight: 800;
    color: #071b3a !important;
}

.product-page .recommended-bottom {
    border-top: 1px solid #edf1f7;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.product-page .recommended-bottom strong {
    display: block;
    color: #071b3a;
    font-weight: 900;
}

.product-page .recommended-bottom small {
    color: #637089;
}

.product-page .recommended-bottom .btn {
    border-radius: 10px;
    font-weight: 900;
    padding: 9px 15px;
}

@media (max-width: 991px) {
    .product-page .product-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .product-page .product-recommended-grid {
        grid-template-columns: 1fr;
    }
}


.product-page .product-main-image {
    position: relative;
    height: 430px;
    border-radius: 18px;
    background: #eef2f7;
    overflow: hidden;
    cursor: zoom-in;
}

.product-page .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .25s ease;
}

.product-page .product-main-image:hover img {
    transform: scale(1.03);
}

.product-page .product-main-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(7, 27, 58, .82);
    color: #fff;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-page .product-gallery-thumb {
    border: 2px solid transparent;
    background: #eef2f7;
    border-radius: 14px;
    padding: 0;
    height: 86px;
    overflow: hidden;
    cursor: pointer;
    transition: .2s ease;
}

.product-page .product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-page .product-gallery-thumb:hover,
.product-page .product-gallery-thumb.active {
    border-color: #2f65b0;
    box-shadow: 0 10px 24px rgba(47, 101, 176, .22);
    transform: translateY(-2px);
}

.product-image-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 25, .92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image-modal.active {
    display: flex;
}

.product-image-modal img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
}

.product-image-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #071b3a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 767px) {
    .product-page .product-main-image {
        height: 280px;
    }

    .product-page .product-gallery {
        grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
    }

    .product-page .product-gallery-thumb {
        height: 72px;
    }
}

.product-page .product-specifications-card {
    /* max-width: 1140px; */
    margin: 34px auto 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(7, 27, 58, .08);
    border: 1px solid rgba(7, 27, 58, .06);
    padding: 34px;
}

.product-page .product-specifications-card .section-label {
    color: #2f65b0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-page .product-specifications-card h2 {
    color: #071b3a;
    font-size: 32px;
    font-weight: 900;
    margin: 8px 0 24px;
}

.product-page .product-specifications-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #edf1f7;
}

.product-page .product-specifications-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.product-page .product-specifications-table tr {
    border-bottom: 1px solid #edf1f7;
}

.product-page .product-specifications-table tr:last-child {
    border-bottom: none;
}

.product-page .product-specifications-table th,
.product-page .product-specifications-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
}

.product-page .product-specifications-table th {
    width: 32%;
    color: #071b3a;
    font-weight: 900;
    background: #f5f7fb;
}

.product-page .product-specifications-table td {
    width: 68%;
    color: #5f6f89;
    line-height: 1.7;
    word-break: break-word;
}

@media (max-width: 767px) {
    .product-page .product-specifications-card {
        padding: 24px;
        margin-top: 28px;
    }

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

    .product-page .product-specifications-table th {
        padding-bottom: 6px;
    }

    .product-page .product-specifications-table td {
        padding-top: 6px;
    }
}


#catalogue-results {
    position: relative;
    transition: opacity .2s ease;
}

#catalogue-results.is-loading {
    opacity: .45;
    pointer-events: none;
}

.catalogue-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 35px;
}

.catalogue-pagination button {
    border: 1px solid rgba(7, 27, 58, .12);
    background: #fff;
    color: #071b3a;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.catalogue-pagination button:hover,
.catalogue-pagination button.active {
    background: #2f65b0;
    color: #fff;
    border-color: #2f65b0;
}

/* Catalogue filters and card overrides. */
.catalogue-filter .form-control {
    min-height: 54px;
    border-radius: 8px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.category-pills a.active,
.category-pills a:hover {
    background: var(--primary, #0d6efd);
    color: #fff;
}

.category-pills span {
    font-size: 12px;
    opacity: .8;
}

.catalogue-card {
    overflow: hidden;
    padding: 0;
}

.catalogue-image {
    position: relative;
    height: 230px;
    background: #f5f5f5;
    overflow: hidden;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary, #0d6efd);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.catalogue-content {
    padding: 24px;
}

.catalogue-category {
    display: block;
    color: var(--primary, #0d6efd);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.catalogue-content h5 a {
    color: inherit;
    text-decoration: none;
}

.catalogue-meta {
    margin: 14px 0;
    font-size: 14px;
}

.catalogue-meta div {
    margin-bottom: 5px;
}

.catalogue-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.price-label {
    display: block;
    font-weight: 800;
    color: #111;
}

.catalogue-bottom small {
    display: block;
    color: #777;
}

/* Styles moved from catalogue\product.php. */
.product-hero-actions,
.product-actions,
.recommended-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hero-actions {
    margin-top: 24px;
}

.product-actions {
    margin-top: 24px;
}

.recommended-actions {
    justify-content: flex-end;
}

.js-rfq-add.is-in-rfq {
    background: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}

@media (max-width: 768px) {

    .product-hero-actions,
    .product-actions,
    .recommended-actions {
        justify-content: flex-start;
    }
}
