:root {
    --bg-header-top: #ebebeb;
    --bg-footer: #fff;
    --bg-body: #ffffff;
    --bg-menu: #ffffff;
    --bg-white: #ffffff;
    --bg-soft-gray: #4E4E4E;
    --bg-soft-yellow: #fffae6;
    --color-primary: #ffc800;
    --color-primary-hover: #e6b400;
    --color-accent: #a97b12;
    --color-text-brand: #5a3f00;
    --color-border: #E0E9EB;
    --color-muted: #a7a7a7;
    --color-neutral-100: #ececec;
    --color-danger: #d22e2d;
    --color-sale: #d70425;
    --color-hotline: #d70408;
    --color-red: #e60023;
    --color-body: #343a40;
    --color-brown: #92161e;
    --color-white: #ffffff;
    --color-copyright-company: #FEB101;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.container-detail {
    align-items: center;
    max-width: 1120px;
    margin: 20px auto;
}

.bread-crumb {
    background: #eeeeee;
    padding: 13px 15px;
}

.product-detail-main {
    margin-top: 40px;
}

.product-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-gallery {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.product-thumbnail {
    border: 1px solid var(--color-neutral-100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 21px;
    transition: border-color 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--color-primary);
}

.product-thumbnail img {
    object-fit: contain;
    display: block;
}

.product-main-image {
    flex: 1;
    overflow: hidden;
}

.product-main-image img {
    display: block;
}

.product-view-count {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
    color: #4E4E4E;
    margin-top: 16px;
}

.product-view-count i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #4E4E4E;
    flex: none;
}

.product-view-count span {
    color: #4E4E4E;
    flex: none;
}

.product-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-title {
    font-family: Arial;
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--color-text-brand);
    display: flex;
    align-items: center;
}

.product-share {
    background-color: var(--color-neutral-100);
    border-radius: 4px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-share-label {
    font-family: Arial;
    font-weight: 700;
    font-size: 14px;
    line-height: 33px;
    color: #4E4E4E;
    display: flex;
    align-items: center;
}

.product-share-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-white);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-share-btn--facebook {
    background-color: #5669F2;
}

.product-share-btn--twitter {
    background-color: #538FFF;
}

.product-share-btn--messenger {
    background-color: #538FFF;
}

.product-share-btn--copy {
    background-color: #538FFF;
}

.product-share-btn i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.product-information {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 9px;
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
    color: #4E4E4E;
}

.product-info-item::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #4E4E4E;
    border-radius: 50%;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.product-info-value {
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
    color: #4E4E4E;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.product-info-value .product-price-contact {
    color: var(--color-primary);
    font-weight: 400;
}

.product-price-sale {
    color: var(--color-copyright-company);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.product-price-old {
    color: var(--color-muted);
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 8px;
}

.product-price-contact {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.product-promo-text {
    font-family: Arial;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #D70408;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-neutral-100);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 16px;
}

.quantity-btn {
    width: 40px;
    height: 42px;
    border: none;
    background-color: var(--bg-white);
    color: var(--bg-soft-gray);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.quantity-btn:hover {
    background-color: var(--color-neutral-100);
    color: var(--color-text-brand);
}

.quantity-input {
    width: 55px;
    height: 42px;
    border: none;
    border-left: 1px solid var(--color-neutral-100);
    border-right: 1px solid var(--color-neutral-100);
    text-align: center;
    font-family: Arial;
    font-weight: 500;
    font-size: 16px;
    color: var(--bg-soft-gray);
    outline: none;
    background-color: var(--bg-white);
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-btn {
    color: var(--bg-soft-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 36px;
    min-height: 42px;
    border: none;
    border-radius: 4px;
    font-family: Arial;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.product-btn--buy-now {
    background-color: #FFC800;
    color: var(--color-text-brand);
    min-width: 144px;
}

.product-btn--buy-now:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.product-btn--add-cart {
    background-color: var(--bg-white);
    border: 0.5px solid rgba(130, 151, 148, 0.5);
    color: #4E4E4E;
    font-weight: 400;
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn--add-cart:hover {
    background-color: var(--color-neutral-100);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.product-btn--add-cart.loading,
.product-btn--add-cart.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.product-btn--add-cart i {
    font-size: 16px;
}

.product-detail-right a img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.product-detail-right a {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: #007bff;
    padding: 2px 5px;
    max-width: 80px;
    border-radius: 5px;
}

.product-information {
    list-style: none;
    line-height: 1.9;
}

.product-items {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.product-item-label {
    font-size: 15px;
    font-weight: bold;
    margin: 0px 5px 0px 0px;
}

.price-new-detail {
    color: #ff8500;
    font-size: 26px;
    font-weight: 700;
}

.price-old-detail {
    margin-left: 10px;
    color: #666;
    text-decoration: line-through;
}

.desc-information-product ul,
.desc-information-product ol {
    margin-left: 17px;
}

.add-cart-product-detail {
    display: flex;
    margin-top: 10px;
}

.product-content-information ul,
.product-content-information ol {
    margin-left: 17px;
}

.product-quantity-detail {
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
}

.quantity-minus,
.quantity-plus {
    font-size: 20px;
    padding: 0 10px;
    width: 50px;
    text-align: center;
}

.qty-product {
    width: 50px;
    border: none;
    outline: none;
    text-align: center;
    padding: 15px 0px;
    font-size: 16px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-cart-product-detail-btn {
    margin-left: 10px;
    padding: 10px 15px;
    background: #fd6e1d;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.add-cart-product-detail-btn span {
    text-transform: uppercase;
    font-weight: 600;
}

/* product-right */
.product-detail-left {
    width: 100%;
    max-width: 690px;
}

.product-detail-left .MagicZoom {
    border-radius: 5px;
    padding: 7px;
    border: 1px solid #ccc;
}

.product-detail-gallery {
    position: relative;
    margin-top: 15px;
}

.thumbnail-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail-grid img {
    border-radius: 5px;
    height: auto;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
    width: 100% !important;
}

.next-left,
.next-right {
    background: #ccc;
    padding: 5px 8px;
    font-size: 20px;
    align-content: center;
    max-height: 30px;
}

.product-tabs {
    margin-top: 24px;
    margin-bottom: 24px;
    position: relative;
}

.product-tabs__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    padding-bottom: 16px;
}

.product-tabs__list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #F0F0F0;
    border: 0.711458px solid #F0F0F0;
}

.product-tabs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
    position: relative;
}

.product-tabs__link {
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: var(--color-text-brand);
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.product-tabs__item--active .product-tabs__link {
    color: var(--color-primary);
}

.product-tabs__item::after {
    content: "";
    width: 93.57px;
    height: 0px;
    border: 1.42292px solid var(--color-primary);
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.product-tabs__item--active::after {
    display: block;
    z-index: 3;
}

.product-content-information {
    margin-top: 24px;
}

.product-content-information__body {
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4E4E4E;
}

.product-content-information__body p {
    margin: 0 0 16px;
}

.product-content-information__body a {
    color: #D70408;
    text-decoration: none;
}

.product-content-information__body a:hover {
    text-decoration: underline;
}

.product-tab-content {
    margin-top: 24px;
}

.specifications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specification-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}

.specification-item:last-child {
    border-bottom: none;
}

.specification-item strong {
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #4E4E4E;
    min-width: 150px;
}

.specification-item span {
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4E4E4E;
    flex: 1;
}

.specifications-content {
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4E4E4E;
}

.specifications-product {
    padding-top: 10px;
    margin-top: 10px;
    border-top: #ccc solid 1px;
}

.specifications-product span {
    font-size: 18px;
    color: #f1c40f;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
}

.product-desc-information ul li {
    line-height: 1.2;
    margin: 15px 0px 0px 15px;
    font-size: 18px;
}

.suite-product {
    font-size: 18px;
    color: #0f0f0f;
    font-weight: 700;
    margin-top: 20px;
}

.img-info {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 5px;
    margin-top: 20px;
}

.img-info img {
    width: 100%;
    border-radius: 5px;
}

.add-cart-product-detail-btn-cat {
    padding: 10px 0px;
    background: #fd6e1d;
    color: #fff;
    border-radius: 5px;
    margin: 0px auto;
    white-space: nowrap;
    text-align: center;
    max-width: 90%;
}

.add-cart-product-detail-btn-cat span {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.product-viewed {
    margin-top: 60px;
}

.product-item-content-cat {
    text-align: center;
}

.product-list-cat-ot {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 5px;
}

.product-item-cat a img {
    width: 200px;
    height: 200px;
}

.product-item-cat {
    border: #ccc solid 1px;
    height: 350px;
    line-height: 1.7;
}

.price-new-detail-cat {
    color: #ff8500;
    font-size: 20px;
    font-weight: 700;
}

.price-old-detail-cat {
    margin-left: 10px;
    color: #666;
    text-decoration: line-through;
    align-content: center;
}

.name-product-cat {
    font-weight: 700;
}

.title-product-detail {
    margin-bottom: 16px;
}

.title-product-detail li {
    font-weight: 600;
}

/** Product filter **/
.title-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-section {
    display: flex;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.filter-select:hover {
    border-color: #9ca3af;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.filter-select-simple {
    padding: 8px 25px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
}

.desc-product-detail {
    padding-bottom: 36px;
    margin-top: 60px;
}

/** Product relation **/
.product-detail-relation {
    padding: 60px 0;
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .product-detail {
        flex-direction: column;
    }

    .product-detail-right {
        width: 100%;
    }

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

    .product-item .info {
        padding: 8px;
    }

    .title-filter {
        flex-direction: column;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {}

/* Small Devices (Phones) */
@media (max-width: 575px) {
    .thumbnail-grid a {
        width: calc(25% - 9px);
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.products-list {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.products-list__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.products-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.products-list__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: var(--color-accent);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.products-list__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.product-card__link {
    flex-direction: column;
}

.products-list__grid .product-card:hover {
    transform: translateY(-2px);
}

.products-list__load-more {
    text-align: center;
    margin-top: 40px;
}

.products-list__load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #FFFAE6;
    color: var(--color-text-brand);
    border: none;
    border-radius: 4px;
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.products-list__load-more-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    color: var(--color-white);
}

.products-list__load-more-btn i {
    font-size: 12px;
}

.products-list__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-muted);
    font-size: 16px;
}

@media (max-width: 1199px) {
    .products-list__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {
    .products-list__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .products-list__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .products-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .products-list__title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .product-detail {
        flex-direction: column;
        gap: 24px;
    }

    .product-detail-gallery {
        flex-direction: column;
    }

    .product-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
    }

    .product-thumbnail {
        flex-shrink: 0;
    }

    .product-main-image {
        min-width: 100%;
        max-width: 100%;
    }

    .product-detail-title {
        width: 100%;
        height: auto;
    }

    .product-share {
        width: 100%;
        height: auto;
    }

    .product-action-buttons {
        width: 100%;
        flex-direction: column;
    }

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

@media (max-width: 767px) {
    .product-thumbnail {
        width: 100px;
    }

    .product-main-image {
        aspect-ratio: 1;
    }

    .product-share-buttons {
        flex-wrap: wrap;
    }
}

.product-suggestions {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.product-suggestions__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    margin-bottom: 24px;
}

.product-suggestions__title {
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0;
}

.product-suggestions__view-all {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    text-decoration: none;
    color: var(--color-text-brand);
    font-family: Arial;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.product-suggestions__view-all:hover {
    color: var(--color-accent);
}

.product-suggestions__view-all i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-brand);
}

.product-suggestions__view-all:hover i {
    color: var(--color-accent);
}

.product-suggestions__carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-suggestions__carousel {
    flex: 1;
}

.product-suggestions__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(78, 78, 78, 0.5);
    border: none;
    border-radius: 2.67px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.product-suggestions__nav--prev {
    left: -50px;
}

.product-suggestions__nav--next {
    right: -50px;
}

.product-suggestions__nav:hover {
    background-color: rgba(78, 78, 78, 0.8);
}

.product-suggestions__nav i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-suggestions__nav--prev i,
.product-suggestions__nav--next i {
    color: var(--color-white);
}

.product-suggestions__carousel .product-card__media .product-card__image {
    border-radius: 4px;
}

.product-suggestions__carousel .product-card__sale {
    position: absolute;
    left: 0%;
    top: 0%;
    background: #D70425;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: 0;
    justify-content: center;
}

.product-suggestions__carousel .product-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    flex: none;
    align-self: stretch;
}

.product-suggestions__carousel .product-card__name {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5A3F00;
    flex: none;
    align-self: stretch;
    margin: 0;
}

.product-suggestions__carousel .product-card__price {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #D22E2D;
    flex: none;
    margin: 0;
}

.product-suggestions__carousel .product-card__sold-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex: none;
    align-self: stretch;
}

.product-suggestions__carousel .product-card__progress {
    position: relative;
    width: 157.59px;
    height: 4px;
    background-color: #ECECEC;
    border-radius: 16px;
    flex: none;
    align-self: stretch;
}

.product-suggestions__carousel .product-card__progress-bar {
    position: absolute;
    width: 38.94px;
    height: 4px;
    left: 0px;
    top: 0px;
    background-color: #FFC800;
    border-radius: 16px;
}

.product-suggestions__carousel .product-card__sold {
    width: 157.59px;
    height: 14.44px;
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #A7A7A7;
    flex: none;
    align-self: stretch;
}
.product-contact-note {
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #D70408;
}

@media (max-width: 1199px) {
    .product-suggestions__header {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .product-suggestions__header {
        gap: 12px;
    }

    .product-suggestions__title {
        font-size: 24px;
    }

    .product-suggestions__nav {
        width: 32px;
        height: 32px;
    }

    .product-suggestions__nav i {
        font-size: 20px;
    }
}