.quarry-products {
    max-width: 1200px;
    margin: 0 auto;
}

.empty-products-list {
    font-family: "Geologica", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #13120f;
    text-align: center;
}

.quarry-products-loader {
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

.product-table {
    overflow: hidden;
    position: relative;
}

.product-table__mobile {
    display: none;
}

.product-table:not(:last-child) {
    margin-bottom: 200px;
}

.product-table__header {
    background: #262626;
    color: #fbfbfb;
    padding: 23px 0 23px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-table__header h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #fbfbfb;
}

.product-table__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: #a9a7a3;
    max-width: 720px;
    width: 100%;
}

.product-table__body {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-bottom: 12px;
    /* border-bottom: 1px solid #7d7d7d; */
}

.product-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
}

.product-details {
    max-width: 210px;
}

.product-details h4 {
    font-family: "Geologica", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #272725;
}

.product-details p {
    font-family: "Geologica", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #272725;
}

.product-details p span {
    font-weight: 400;
    color: #5e5d5c;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 285px;
    width: 100%;
    height: 120px;
    border-radius: 10px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
}

.product-specs span {
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #5e5d5c;
}

.pdf-link {
    color: #ffa800;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s linear, transform .3s linear;
}

.pdf-link:hover {
    color: #e18701;
    transform: scale(1.01);
}

.product-table__footer {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid var(--p3);
    margin-top: 8px !important;
}

.pdf-container {
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #272725;
}

.order-button {
    display: block;
    border-radius: 8px;
    padding: 15px 20px;
    background: #ffa800;
    color: #fbfbfb !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    max-width: 285px;
    width: 100%;
}

.order-button:hover {
    background: #e18701;
}

.quarry-products-loader {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.skeleton-image {
    width: 285px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 10px;
}

.skeleton-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 210px;
}

.skeleton-title {
    width: 150px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
}

.skeleton-text {
    width: 100px;
    height: 16px;
    background: #f0f0f0;
    border-radius: 4px;
}

.skeleton-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.skeleton-spec {
    width: 80px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
}

#quarry-all-products-container .product-table__body {
    padding-bottom: 0;
    border-bottom: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

#quarry-all-products-container .product-table__header {
    padding: 20px !important;
    margin-bottom: 40px !important;
}

#quarry-all-products-container .product-card .product-image {
    width: 100%;
    max-width: none !important;
    min-height: 177px !important;
    margin-bottom: 12px;
    background-size: 100%;
    transition: background-size .3s linear;
}

#quarry-all-products-container .product-card .product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Geologica", sans-serif;
    align-items: flex-start;
    min-height: 148px !important;
}

#quarry-all-products-container .product-card .product-info h4,
#quarry-all-products-container .product-card .product-info .product-info__fraction {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: var(--tekst-1);
    transition: color .3s linear;
}

#quarry-all-products-container .product-card .product-info .product-info__fraction {
    margin-bottom: 12px !important;
}

#quarry-all-products-container .product-card .product-info .product-info__strength span,
#quarry-all-products-container .product-card .product-info .product-info__density span {
    color: #7d7d7d;
}

#quarry-all-products-container .product-card .product-info .product-info__strength,
#quarry-all-products-container .product-card .product-info .product-info__density {
    color: #272725;
    font-weight: 300;
    font-size: 14px;
}

#quarry-all-products-container .product-card .product-info .product-info__density.density-mobile,
#quarry-all-products-container .product-card .product-info .product-info__strength.strength-mobile {
    display: none;
}

#quarry-all-products-container .product-card .product-info .product-info__footer {
    align-self: flex-end;
}

#quarry-all-products-container .product-card .product-info .product-info__footer a {
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    color: #ffa800;
    text-decoration: none;
    transition: color 0.3s linear;
}

#quarry-all-products-container .product-card .product-info .product-info__footer a svg {
    margin-left: 4px;
    fill: #ffa800;
    transition: fill 0.3s linear;
}

#quarry-all-products-container .product-card .product-info .product-info__footer a:hover {
    color: #e18701;
}

#quarry-all-products-container .product-card .product-info .product-info__footer a:hover svg {
    fill: #e18701;
}

/* Анимация блика */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.product-info__footer a:hover svg {
    fill: #e18701;
}

.product-info__footer .order-link {
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    color: #ffa800;
    cursor: pointer;
    transition: color .3s linear;
}

.product-info__footer .order-link svg {
    margin-left: 9px;
    fill: #ffa800;
    transition: fill .3s linear;
}

.product-link {
    color: #272725;
    text-decoration: none;
    transition: color 0.3s linear;
}

.product-link:hover {
    color: #ffa800;
}

.product-link-card {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
    max-width: 386px;
}

.product-link-card .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.product-link-card .product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* Переопределяем стили для карточек внутри контейнера all-products */
#quarry-all-products-container .product-link-card {
    max-width: 386px !important;
    width: 100% !important;
}

#quarry-all-products-container .product-link-card:hover .product-card .product-info h4,
#quarry-all-products-container .product-link-card:hover .product-card .product-info__fraction {
    color: var(--hover);
}

#quarry-all-products-container .product-link-card:hover .product-card .product-image {
    background-size: 110%;
}

#quarry-all-products-container .product-link-card:hover .product-info__footer .order-link svg {
    fill: var(--hover);
}

#quarry-all-products-container .product-link-card:hover .product-info__footer .order-link {
    color: var(--hover);
}

#quarry-all-products-container .product-card {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background-color: #f0f0f0;
    border-radius: 16px;
    width: 100% !important;
    min-height: 368px;
}

/* Страница отдельного вида продукта */
#productVariant .product-image {
    width: 100%;
    min-height: 280px;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 560px !important;
    transition: background-size .3s linear;
    cursor: pointer;
}

#productVariant .product-image:hover {
    background-size: 110%;
}

.product-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 560px;
}

.product-image-wrapper .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.product-image-wrapper .gallery-prev {
    left: 10px;
}

.product-image-wrapper .gallery-next {
    right: 10px;
}

.product-variant-top-right {
    border: 1px solid var(--text-3);
    border-radius: 10px;
    width: 356px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-variant-top-right h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--zagolovok-2);
    margin-bottom: 4px !important;
}

.product-variant-top-right p {
    font-family: "Geologica", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: var(--zagolovok-2);
    margin-bottom: 20px !important;
}

.product-variant-container {
    max-width: 996px;
    padding: 30px;
    gap: 50px;
    background: var(--p4-zagolovok-1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.product-variant-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-variant-gallery {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    /* для IE и Edge */
    scrollbar-width: none;
    /* для Firefox */
    scroll-behavior: smooth;
}

.product-variant-gallery::-webkit-scrollbar {
    display: none;
    /* для Chrome, Safari и Opera */
}

.product-variant-gallery-wrapper {
    position: relative;
    margin-top: 12px;
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
}

.gallery-nav {
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--p4-zagolovok-1) !important;
    opacity: 0.6;
    border: 1px solid transparent !important;
    outline: none !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s linear;
    padding: 0 !important;
}

.gallery-nav svg {
    fill: var(--text-1);
}

.gallery-nav:not(.gallery-nav.disabled):hover {
    opacity: 1;
    background: var(--p4-zagolovok-1) !important;
    border: 1px solid var(--hover) !important;
}

.gallery-nav:not(.gallery-nav.disabled):hover svg {
    fill: var(--hover) !important;
}

.gallery-prev {
    left: -16px;
}

.gallery-next {
    right: -16px;
}

.gallery-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-image {
    width: 100%;
    max-width: 144px;
    min-width: 144px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    opacity: 0.5;
    border: 1px solid var(--text-4-svetlyy-dlya-temnogo);
}

.gallery-image.active {
    opacity: 1;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.spec-label {
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-2);
}

.spec-value {
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--tekst-1);
}

.product-variant-bottom-title {
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--tekst-1);
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--text-4-svetlyy-dlya-temnogo);
}

.product-variant-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

.back-link {
    font-family: "Geologica", sans-serif;
    color: #272725;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ffa800;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #ffa800;
    color: #fff;
}

/* Стили для блока карьеров */
.quarry-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quarry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quarry-info {
    display: flex;
    flex-direction: column;
}

.quarry-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--zagolovok-2);
    margin-bottom: 2px !important;
}



.quarry-address {
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--tekst-1);
}

#productVariant .order-button {
    display: block;
    border-radius: 8px;
    padding: 15px 20px;
    background: var(--p1);
    border: none !important;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--p4-zagolovok-1) !important;
    width: 200px;
    max-height: 50px;
    line-height: 120%;
}

#productVariant .order-button:hover {
    background: var(--hover);
}

.quarry-link {
    font-family: "Geologica", sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    border: 2px solid var(--p1);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: var(--p1) !important;
    width: 200px;
    padding: 15px 20px;
    text-align: center;
    max-height: 50px;
    line-height: 100%;
    transition: background .3s linear, border .3s linear, color .3s linear;
}

.quarry-link:hover {
    background: var(--hover);
    border: 2px solid var(--hover);
    color: var(--p4-zagolovok-1) !important;
}


.quarry-actions-block {
    display: flex;
    gap: 12px;
}

.no-quarries {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--zagolovok-2);
}

/* Стили для лайтбокса */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(19, 18, 15, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: -50px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close svg {
    transition: stroke .3s linear;
    stroke: #A9A7A3;
}

.lightbox-close:hover svg {
    stroke: var(--hover);
}

.lightbox-download {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.lightbox-content:hover .lightbox-download {
    opacity: 1;
}

.lightbox-download:hover {
    background-color: #ffa800;
}

.product-table__columns p span {
    color: var(--text-2) !important;
}

.mobile-table-product-title {
    display: none;
}


@media screen and (max-width: 1279px) {

    .product-details,
    .product-image {
        min-width: 168px !important;
    }

    .product-table__columns,
    .product-specs {
        grid-template-columns: repeat(3, 200px);
        justify-content: flex-end;
    }

    #quarry-all-products-container .product-table__body {
        justify-content: space-around;
    }
}

@media screen and (max-width: 1023px) {
    .product-info {
        gap: 12px;
    }

    .product-details,
    .product-image {
        min-width: 168px !important;
    }

    .product-image {
        height: 80px;
    }

    .product-table__columns,
    .product-specs {
        grid-template-columns: repeat(3, 180px);
    }

    .table-product-title {
        display: none;
    }

    .mobile-table-product-title {
        display: inline-block;
    }

    .product-details h4,
    .product-details p {
        font-weight: 500;
    }

    .product-table__header h3 {
        font-size: 20px;
    }

    #quarry-all-products-container .product-table__header h3 {
        font-size: 30px;
    }

    #quarry-all-products-container .product-table__header {
        padding: 12px 20px !important;
    }

    #quarry-all-products-container .product-table__header svg {
        width: 61px;
        height: 30px;
    }

    #quarry-all-products-container .product-table__header {
        margin-bottom: 30px !important;
    }

    #quarry-all-products-container .product-table:not(:last-child) {
        margin-bottom: 100px;
    }

    #quarry-all-products-container .product-table__body {
        column-gap: 12px;
        row-gap: 20px;
        justify-content: space-between;
    }

    #quarry-all-products-container .product-card {
        padding: 12px;
    }

    .product-table__header {
        padding: 9px 0 9px 23px;
    }

    .product-table__footer {
        padding-top: 12px;
    }

    .product-table__body {
        row-gap: 10px;
    }

    .product-table:not(:last-child) {
        margin-bottom: 120px;
    }

    .product-image-wrapper {
        min-width: 470px;
    }

    .product-variant-container {
        padding: 20px;
    }

    .product-variant-top {
        gap: 12px;
    }

    .product-variant-gallery-wrapper {
        margin-top: 8px;
    }

    .product-variant-container {
        gap: 40px;
    }
}

@media screen and (max-width: 959px) {

    .product-table__columns,
    .product-specs {
        grid-template-columns: 80px 115px 104px;
    }

    #quarry-all-products-container .product-link-card {
        max-width: 348px !important;
    }

    #productVariant .order-button,
    #productVariant .quarry-link {
        padding: 14px 5px;
        width: 164px;
    }

    .product-image-wrapper {
        min-width: 382px;
        height: 240px;
    }

    #productVariant .spec-label {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .product-table-main {
        overflow-x: scroll !important;
    }

    .product-table__mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 0;
        max-width: 257px !important;
        background-color: #FBFBFB;
    }

    .product-table__header:not(.product-table__mobile .product-table__header) {
        min-width: 525px;
        min-height: 65px;
    }

    .product-table__mobile .product-table__header {
        padding: 20px 23px 20px 23px;
        border-radius: 16px 0 0 16px !important;
        min-height: 65px;
        margin-bottom: 10px !important;
    }

    .product-table__mobile .product-table__body {
        border: none !important;
        border-right: 1px solid var(--text-4-svetlyy-dlya-temnogo) !important;
    }

    .product-table__mobile .product-table__body::before {
        content: url('../../table-icon.svg');
        position: absolute;
        width: 8px;
        height: 13px;
        right: -10px;
        top: 50%;
        transform: translateY(200%);
    }

    .product-table-main {
        border-bottom: 1px solid #7d7d7d;
    }

    .product-table__footer {
        flex-direction: column;
        gap: 30px;
        border-top: none;
        margin-top: 0 !important;
    }

    a.order-button {
        width: 100%;
        max-width: none;
    }

    .product-table__header h3 {
        font-size: 16px;
    }

    .product-table__columns {
        font-size: 12px;
    }

    .product-image {
        height: 63px;
        max-width: 79px !important;
        min-width: 79px !important;
    }

    .product-info {
        gap: 10px;
    }

    .product-details h4,
    .product-details p {
        font-size: 14px;
    }

    .product-specs {
        min-width: 270px !important;
        font-size: 14px !important;
    }

    .product-specs span {
        font-size: 14px;
    }

    .product-table__columns,
    .product-specs {
        grid-template-columns: repeat(3, 89px);
    }

    .quarry-products {
        padding-right: 15px !important;
    }

    #quarry-all-products-container .product-table__body {
        column-gap: 10px;
        row-gap: 20px;
        flex-wrap: wrap;
    }

    #quarry-all-products-container .product-table__header h3 {
        font-size: 20px;
    }

    #quarry-all-products-container .product-table__header {
        padding: 12px 16px !important;
        margin-bottom: 12px !important;
    }

    #quarry-all-products-container .product-table__header svg {
        width: 39px;
        height: 19px;
    }

    #quarry-all-products-container .product-card {
        padding: 8px 8px 12px 8px;
    }

    #quarry-all-products-container .product-link-card {
        max-width: 48% !important;
    }

    #quarry-all-products-container .product-card .product-info h4,
    #quarry-all-products-container .product-card .product-info .product-info__fraction {
        font-size: 14px;
        font-weight: 500;
    }

    #quarry-all-products-container .product-card {
        min-height: 268px;
    }

    #quarry-all-products-container .product-card .product-image {
        min-height: 104px !important;
        margin-bottom: 8px;
    }

    #quarry-all-products-container .product-card .product-info .product-info__fraction {
        margin-bottom: 10px;
    }

    #quarry-all-products-container .product-table:not(:last-child) {
        margin-bottom: 80px;
    }

    #quarry-all-products-container .product-table__header {
        min-width: 0 !important;
        min-height: 0 !important;
        border-radius: 10px;
    }

    .product-variant-top {
        flex-direction: column;
    }

    .product-variant-container {
        padding: 12px;
    }

    .product-image-wrapper {
        min-width: 0;
    }

    #productVariant .product-image {
        min-height: 200px;
    }

    .gallery-image {
        min-width: 120px;
    }

    .quarry-item,
    .quarry-actions-block {
        flex-direction: column;
    }

    #productVariant .order-button,
    #productVariant .quarry-link,
    .quarry-actions-block {
        width: 100%;
    }

    .product-image-wrapper {
        height: 201px;
    }

    .product-variant-top-right {
        padding: 12px;
        width: 100%;
    }

    .product-variant-top-right h2 {
        font-size: 16px;
    }

    .product-variant-top-right p {
        margin-bottom: 12px !important;
    }

    #productVariant {
        width: 465px !important;
    }

    #productVariant .spec-label {
        font-size: 16px;
    }

    .product-variant-container {
        gap: 30px;
    }

    .product-variant-bottom-title {
        margin-bottom: 24px;
    }

    #productVariant .quarry-item {
        align-items: flex-start;
        gap: 20px;
    }

    #quarry-all-products-container .product-card .product-info .product-info__footer {
        align-self: flex-start;
        width: 100%;
    }

    .product-info__footer .order-link {
        justify-content: flex-end;
    }
}

@media screen and (max-width: 550px) {
    .quarry-products {
        padding-right: 0 !important;
    }

    .product-table__footer {
        padding-right: 15px !important;
    }

    #quarry-all-products-container .product-card .product-info .product-info__density:not(.product-info__density.density-mobile),
    #quarry-all-products-container .product-card .product-info .product-info__strength:not(.product-info__strength.strength-mobile) {
        display: none !important;
    }

    #quarry-all-products-container .product-card .product-info .product-info__header {
        width: 100%;
    }

    #quarry-all-products-container .product-card .product-info .product-info__density.density-mobile,
    #quarry-all-products-container .product-card .product-info .product-info__strength.strength-mobile {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: 100% !important;
    }
}

@media screen and (max-width: 499px) {
    #productVariant {
        width: 100% !important;
    }

    #productVariant .quarry-name {
        font-size: 16px;
    }
}
@media screen and (max-width: 474px) {}

@media screen and (max-width: 424px) {
    .product-info__footer .order-link {
        font-size: 12px;
    }
}

@media screen and (max-width: 374px) {
    .product-table__mobile {
        max-width: 200px !important;
    }

    .product-details {
        min-width: 0 !important;
    }

    .product-table__header:not(.product-table__mobile .product-table__header) {
        min-width: 465px !important;
    }

    .product-specs {
        min-width: 310px !important;
    }

    .product-info {
        min-width: 157px !important;
    }

    .pdf-container {
        display: flex;
        flex-direction: column;
    }

    #quarry-all-products-container .product-link-card {
        max-width: 100% !important;
    }

    #productVariant .spec-label {
        font-size: 14px;
    }
}