.product-details {
    align-items: center;
    background-color:  #efeded;
    display: flex;
    flex-direction: column;
    padding: 50px 60px 80px;
}

@media (max-width: 991px) {
    .product-details {
        padding: 0 20px;
    }
}

.product-container {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    border-radius: 5px;
    width: 1160px;
    max-width: 100%;
}

.product-layout {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .product-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.product-images {
    display: flex;
    flex-direction: column;
    line-height: normal;
    margin-left: 0;
}

@media (max-width: 991px) {
    .product-images {
        width: 100%;
    }
}

.main-image-container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .main-image-container {
        margin-top: 40px;
    }
}

.main-image {
    object-position: center;
    width: 336px;
    height: 336px;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    justify-content: flex-start;
    object-fit: contain;
    height:72px;
    width: 72px;
}

.thumbnail-images img {
    object-fit: contain;
}

.thumbnail {
    object-position: center;
    width: 69px;
    border: 2px solid transparent;
    cursor: pointer;
}
.thumbnail:first-child {
    object-position: center;
    width: 69px;
    border: 2px solid lightgray;
}

.additional-images {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

@media (max-width: 991px) {
    .additional-images {
        padding-right: 20px;
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 67%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .product-info {
        width: 100%;
    }
}

.product-details-container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

@media (max-width: 991px) {
    .product-details-container {
        max-width: 100%;
        margin-top: 40px;
    }
}

.product-name {
    color: #1e2d57;
    font: 700 42px/50px Rubik, sans-serif;
}

@media (max-width: 991px) {
    .product-name {
        max-width: 100%;
        font-size: 21px;
        line-height: 26px;
        padding-right: 30px;
    }
}

.section-title {
    color:  #1c1c1c;
    margin-top: 50px;
    font: 700 22px/120% Rubik, sans-serif;
}

@media (max-width: 991px) {
    .section-title {
        max-width: 100%;
        margin-top: 40px;
    }
}

.product-description {
    color:  #454967;
    margin-top: 25px;
    font: 400 18px/25px Rubik, sans-serif;
}

@media (max-width: 991px) {
    .product-description {
        max-width: 100%;
    }
}

.product-spec {
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    /*margin-top: 25px;*/
    gap: 20px;
    font-size: 14px;
    color: #454967;
    font-weight: 400;
    line-height: 140%;
    padding: 10px 20px;
}

@media (max-width: 991px) {
    .product-spec {
        max-width: 100%;
        flex-wrap: wrap;
    }
}

.spec-label {
    font-family: Rubik, sans-serif;
    flex: 1;
}

.spec-value {
    font-family: Rubik, sans-serif;
    flex: 1;
}

.purchase-info {
    display: flex;
    margin-top: 50px;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 650px) {
    .purchase-info {
        max-width: 90%;
        flex-wrap: wrap;
        margin-top: 40px;
    }
}

.price-info {
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

.price-label {
    color:  #1c1c1c;
    font: 700 22px/120% Rubik, sans-serif;
}

.price-value {
    color: #1e2d57;
    font: 24px/34px Manrope, sans-serif;
}

.price-vat {
    color:  #a6a8a7;
    font: 12px/140% Manrope, sans-serif;
}

.contact-info-item {
    border-radius: 5px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    display: flex;
    gap: 20px;
    font-size: 32px;
    color: #1e2d57;
    font-weight: 700;
    white-space: nowrap;
    line-height: 120%;
    margin-left :0;
    margin-right:0;
    margin-top: auto;
    padding: 12px 22px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .contact-info {
        flex-wrap: wrap;
        white-space: initial;
        padding: 0 20px;
    }
}

.contact-icon {
    object-position: center;
    width: 30px;
    margin: auto 0;
}

.contact-number {
    font-family: Rubik, sans-serif;
}
