.get-product-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.get-product-container__logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.get-product-container__title {
    width: calc(100% - 26px);
    margin-top: 78px;
}

.get-product-container__title h1 {
    text-align: left;
    font-family: "Montserrat-Bold", sans-serif;
    color: #333333;
}

.get-product-container__section {
    width: calc(100% - 26px);
    height: 180px;
    margin-top: 20px;
}

.wrapper-get-product-container__section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.get-product-container__section-left {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 40%;
    width: 100%;
}

.get-product-container__section-left a {
    text-align: center;
    font-family: "RobotoFlex", sans-serif;
    font-size: 13px;
    padding: 7px;
    background: linear-gradient(90deg, #3366ff 0%, #6699ff 100%);
    color: white;
    border-radius: 5px;
}

.get-product-container__section-right {
    flex: 1;
}

.get-product-container__section-right__preview {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-product-container__section-right__preview img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.get-product-container__description {
    width: calc(100% - 26px);
    margin: 13px 0px;
}

.get-product-container__description ul {
    margin: 15px 10px;
    font-size: 15px;
    color: #333333;
}

.get-product-container__description ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.get-product-container__description ul li img {
    width: 25px;
    height: 25px;
}

.get-product-container__description p {
    font-family: "RobotoFlex", sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
}

.get-product-container__description h2 {
    font-family: "RobotoFlex", sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin-top: 8px;
    color: #333333;
}

.get-product-container__photos {
    width: calc(100% - 26px);
    height: auto;
}

.get-product-container__photos p {
    font-family: "RobotoFlex", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}

.get-product-container__photos-galery {
    margin-top: 10px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 5px;
}

.get-product-container__photos-galery__item {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
}

.get-product-container__photos-galery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.get-product-container__viewer {
    position: fixed;
    top: 0;
    width: 400px;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(to top, #f5f7fa 0%, #c3daff 100%);
}

.wrapper-get-product-container__viewer {
    max-width: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.get-product-container__viewer img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.get-product-container__viewer__galery {
    width: calc(100% - 26px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    bottom: -60px;
}

.get-product-container__viewer__galery__item {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.get-product-container__viewer__galery__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.get-product-container__viewer__btn {
    display: block;
    width: 100%;
    padding: 12px;
    position: absolute;
    top: -50px;
    font-family: "RobotoFlexBold", sans-serif;
    border: none;
    background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
    border-radius: 6px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite alternate;
}

.get-product-container__section-right-pc {
    display: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

@font-face {
    font-family: "Merriweather_24pt-Bold";
    src: url("/fonts/Merriweather_24pt-Bold.ttf") format("truetype");

    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/Inter_28pt-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlexBold";
    src: url("/fonts/Inter_18pt-Bold.ttf") format("truetype");

    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("/fotns/Montserrat-Bold.ttf") format("truetype");

    font-weight: bold;
    font-style: normal;
}

@media(min-width: 0px) and (max-width:320px) {

    html,
    body,
    .mobileNavigation {
        background-color: #f9f9f9;
    }

    .get-product-container__title h1 {
        font-size: 20px;
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 14px;
    }

    .get-product-container__description p {
        font-size: 14px;
    }

    .get-product-container__description h2 {
        font-size: 14px;
    }

    .get-product-container__section-left a {
        font-size: 14px;
    }
}

@media(min-width: 0px) and (max-width:320px) {

    .get-product-container__title {
        width: calc(100% - 26px);
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 26px;
    }

    .get-product-container__section {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-top: 68px;
        padding: 13px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
        font-size: 26px;
    }

    .wrapper-get-product-container__section {
        height: 280px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
        height: auto;
    }

    .get-product-container__section svg {
        width: 100%;
        height: auto;
        display: inline;
    }

    .get-product-container__section-left {
        margin: 0px auto;
        max-width: 95%;
        width: 100%;
    }

    .get-product-container__section-left a {
        padding: 13px 10px;
        font-size: 15px;
        width: 100%;
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .get-product-container__section-left a span {
        height: 44px;
        width: 44px;
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #16A34A;
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .get-product-container__section-left a span img {
        height: 80%;
        width: auto;
        transform: translateY(14%);
    }

    .get-product-container__section-right {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .get-product-container__section-right__preview {
        width: 95%;
        height: auto;
        display: flex;
        margin: 7px auto 10px auto;
        align-items: center;
        justify-content: flex-end;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__description p {
        font-size: 17px;
        font-family: "RobotoFlexBold";
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 15px;
    }

    .get-product-container__photos {
        width: 100%;
        margin: 0px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__photos-galery {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        overflow: hidden;
        height: auto;
    }



    .get-product-container__photos-galery__item {
        width: 100%;
        height: 100%;
    }

    .get-product-container__photos-galery__item img {
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .get-product-container__photos p {
        font-size: 17px;
        margin-bottom: 15px;
    }

}

@media(min-width: 320px) and (max-width:376px) {

    .get-product-container__title {
        width: calc(100% - 26px);
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 26px;
    }

    .get-product-container__section {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-top: 68px;
        padding: 13px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
        font-size: 26px;
    }

    .wrapper-get-product-container__section {
        height: 280px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
        height: auto;
    }

    .get-product-container__section svg {
        width: 100%;
        height: auto;
        display: inline;
    }

    .get-product-container__section-left {
        margin: 0px auto;
        max-width: 95%;
        width: 100%;
    }

    .get-product-container__section-left a {
        padding: 13px 10px;
        font-size: 15px;
        width: 100%;
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .get-product-container__section-left a span {
        height: 44px;
        width: 44px;
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #16A34A;
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .get-product-container__section-left a span img {
        height: 80%;
        width: auto;
        transform: translateY(14%);
    }

    .get-product-container__section-right {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .get-product-container__section-right__preview {
        width: 95%;
        height: auto;
        display: flex;
        margin: 7px auto 10px auto;
        align-items: center;
        justify-content: flex-end;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__description p {
        font-size: 17px;
        font-family: "RobotoFlexBold";
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 15px;
    }

    .get-product-container__photos {
        width: 100%;
        margin: 0px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__photos-galery {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        overflow: hidden;
        height: auto;
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child) {
        justify-content: flex-start;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child)>* {
        width: 100%;
    }

    .get-product-container__photos-galery__item {
        width: 100%;
        height: 100%;
    }

    .get-product-container__photos-galery__item img {
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .get-product-container__photos p {
        font-size: 17px;
        margin-bottom: 15px;
    }

}

@media(min-width: 376px) and (max-width:426px) {

    .get-product-container__title {
        width: calc(100% - 26px);
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 26px;
    }

    .get-product-container__section {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-top: 68px;
        padding: 13px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
        font-size: 26px;
    }

    .wrapper-get-product-container__section {
        height: 280px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
        height: auto;
    }

    .get-product-container__section svg {
        width: 100%;
        height: auto;
        display: inline;
    }

    .get-product-container__section-left {
        margin: 0px auto;
        max-width: 95%;
        width: 100%;
    }

    .get-product-container__section-left a {
        padding: 13px 10px;
        font-size: 15px;
        width: 100%;
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .get-product-container__section-left a span {
        height: 44px;
        width: 44px;
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #16A34A;
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .get-product-container__section-left a span img {
        height: 80%;
        width: auto;
        transform: translateY(14%);
    }

    .get-product-container__section-right {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .get-product-container__section-right__preview {
        width: 95%;
        height: auto;
        display: flex;
        margin: 7px auto 10px auto;
        align-items: center;
        justify-content: flex-end;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__description p {
        font-size: 17px;
        font-family: "RobotoFlexBold";
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 15px;
    }

    .get-product-container__photos {
        width: 100%;
        margin: 0px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__photos-galery {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        overflow: hidden;
        height: auto;
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child) {
        justify-content: flex-start;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child)>* {
        width: 100%;
    }

    .get-product-container__photos-galery__item {
        width: 100%;
        height: 100%;
    }

    .get-product-container__photos-galery__item img {
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .get-product-container__photos p {
        font-size: 17px;
        margin-bottom: 15px;
    }

}

@media(min-width: 426px) and (max-width:531px) {

    .get-product-container__title {
        width: calc(100% - 26px);
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 26px;
    }

    .get-product-container__section {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-top: 68px;
        padding: 13px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
        font-size: 26px;
    }

    .wrapper-get-product-container__section {
        height: 280px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
        height: auto;
    }

    .get-product-container__section svg {
        width: 100%;
        height: auto;
        display: inline;
    }

    .get-product-container__section-left {
        margin: 0px auto;
        max-width: 95%;
        width: 100%;
    }

    .get-product-container__section-left a {
        padding: 13px 10px;
        font-size: 15px;
        width: 100%;
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .get-product-container__section-left a span {
        height: 44px;
        width: 44px;
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #16A34A;
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .get-product-container__section-left a span img {
        height: 80%;
        width: auto;
        transform: translateY(14%);
    }

    .get-product-container__section-right {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .get-product-container__section-right__preview {
        width: 95%;
        height: auto;
        display: flex;
        margin: 7px auto 10px auto;
        align-items: center;
        justify-content: flex-end;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__description p {
        font-size: 17px;
        font-family: "RobotoFlexBold";
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 15px;
    }

    .get-product-container__photos {
        width: 100%;
        margin: 0px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__photos-galery {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        overflow: hidden;
        height: auto;
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child) {
        justify-content: flex-start;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child)>* {
        width: 100%;
    }

    .get-product-container__photos-galery__item {
        width: 100%;
        height: 100%;
    }

    .get-product-container__photos-galery__item img {
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .get-product-container__photos p {
        font-size: 17px;
        margin-bottom: 15px;
    }

}

@media(min-width: 531px) and (max-width:769px) {

    .get-product-container__title {
        width: calc(100% - 26px);
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 26px;
    }

    .get-product-container__section {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-top: 68px;
        padding: 13px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
        font-size: 26px;
    }

    .wrapper-get-product-container__section {
        height: 280px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
        height: auto;
    }

    .get-product-container__section svg {
        width: 100%;
        height: auto;
        display: inline;
    }

    .get-product-container__section-left {
        margin: 0px auto;
        max-width: 95%;
        width: 100%;
    }

    .get-product-container__section-left a {
        padding: 13px 10px;
        font-size: 15px;
        width: 100%;
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .get-product-container__section-left a span {
        height: 44px;
        width: 44px;
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #16A34A;
        border-bottom-right-radius: 6px;
        border-top-right-radius: 6px;
    }

    .get-product-container__section-left a span img {
        height: 80%;
        width: auto;
        transform: translateY(14%);
    }

    .get-product-container__section-right {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .get-product-container__section-right__preview {
        width: 95%;
        height: auto;
        display: flex;
        margin: 7px auto 10px auto;
        align-items: center;
        justify-content: flex-end;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__description p {
        font-size: 17px;
        font-family: "RobotoFlexBold";
    }

    .get-product-container__description ul {
        margin: 15px 10px;
        font-size: 15px;
    }

    .get-product-container__photos {
        width: 100%;
        margin: 0px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__photos-galery {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        overflow: hidden;
        height: auto;
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child) {
        justify-content: flex-start;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .get-product-container__photos-galery:has(> :nth-child(-n+2):last-child)>* {
        width: 100%;
    }

    .get-product-container__photos-galery__item {
        width: 100%;
        height: 100%;
    }

    .get-product-container__photos-galery__item img {
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .get-product-container__photos p {
        font-size: 17px;
        margin-bottom: 15px;
    }

}

@media(min-width: 769px) and (max-width:1024px) {

    .get-product-container {
        width: calc(100% - 26px);
        margin: 20px auto 20px auto;
        border-radius: 16px;
    }

    .get-product-container__title {
        width: calc(100% - 15px);
        margin: 20px auto;
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 28px;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__section {
        height: auto;
        width: 100%;
        padding: 13px;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-bottom: 20px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
    }

    .get-product-container__section-left a {
        font-size: 15px;
        padding: 15px 80px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
    }

    .get-product-container__section-right {
        display: none;
    }

    .get-product-container__photos {
        display: none;
    }

    .get-product-container__description p {
        font-size: 19px;
    }

    .get-product-container__description h2 {
        font-size: 16px;
    }

    .get-product-container__section-right-pc {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex: 1;
        gap: 15px;
    }

    .get-product-container__section-right-pc-preview {
        width: 76%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .get-product-container__section-right-pc-preview img {
        max-width: 100%;
        width: auto;
        max-height: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .get-product-container__section-right-pc-photos {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
        height: 100%;
    }

    .get-product-container__section-right-pc-photos__item {
        width: 100%;
        height: 80px;
        cursor: pointer;
    }

    .get-product-container__section-right-pc-photos__item img {
        max-width: 100%;
        width: auto;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #ccc;
    }
}

@media(min-width: 1024px) and (max-width:1200px) {

    .get-product-container {
        width: calc(100% - 26px);
        margin: 20px auto 20px auto;
        border-radius: 16px;
    }

    .get-product-container__title {
        width: calc(100% - 15px);
        margin: 20px auto;
        display: none;
    }

    .get-product-container__title h1 {
        font-size: 28px;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__section {
        height: auto;
        width: 100%;
        padding: 13px;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-bottom: 20px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
    }

    .get-product-container__section-left a {
        font-size: 15px;
        padding: 15px 80px;
        max-width: 85%;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
    }

    .get-product-container__section-right {
        display: none;
    }

    .get-product-container__photos {
        display: none;
    }

    .get-product-container__description p {
        font-size: 19px;
    }

    .get-product-container__description h2 {
        font-size: 16px;
    }

    .get-product-container__section-right-pc {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex: 1;
        gap: 15px;
    }

    .get-product-container__section-right-pc-preview {
        width: 76%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .get-product-container__section-right-pc-preview img {
        max-width: 100%;
        width: auto;
        max-height: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .get-product-container__section-right-pc-photos {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
        height: 100%;
    }

    .get-product-container__section-right-pc-photos__item {
        width: 100%;
        height: 80px;
        cursor: pointer;
    }

    .get-product-container__section-right-pc-photos__item img {
        max-width: 100%;
        width: auto;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #ccc;
    }
}

@media(min-width: 1200px) {

    .get-product-container {
        width: 100%;
        margin: 20px auto 20px auto;
        border-radius: 16px;
    }

    .get-product-container__title {
        display: none;
    }

    .get-product-container__description {
        width: 100%;
        margin: 20px auto 20px auto;
        padding: 13px;
        background-color: #f9f9f9;
        border-radius: 16px;
    }

    .get-product-container__section {
        height: auto;
        width: 100%;
        padding: 13px;
        background: linear-gradient(to top, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 16px;
        margin: 0 auto;
    }

    .get-product-container__section h1 {
        margin-bottom: 20px;
        font-family: "Merriweather_24pt-Bold";
        color: #1a2a3a;
    }

    .get-product-container__section-left a {
        font-size: 15px;
        padding: 15px 80px;
        max-width: 85%;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background: linear-gradient(90deg, #22C55E 0%, #22C55E 100%);
        font-family: "RobotoFlexBold";
    }

    .get-product-container__section-right {
        display: none;
    }

    .get-product-container__photos {
        display: none;
    }

    .get-product-container__description p {
        font-size: 19px;
    }

    .get-product-container__description h2 {
        font-size: 16px;
    }

    .get-product-container__section-right-pc {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex: 1;
        gap: 15px;
    }

    .get-product-container__section-right-pc-preview {
        width: 84%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .get-product-container__section-right-pc-preview img {
        max-width: 100%;
        width: auto;
        max-height: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .get-product-container__section-right-pc-photos {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
        height: 100%;
    }

    .get-product-container__section-right-pc-photos__item {
        width: 100%;
        height: 92.5px;
        cursor: pointer;
    }

    .get-product-container__section-right-pc-photos__item img {
        max-width: 100%;
        width: auto;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid #ccc;
    }

    .get-product-container__description ul {
        margin: 10px 8px;
    }

    .get-product-container__description ul li {
        margin-top: 5px;
        font-family: "RobotoFlex", sans-serif;
    }

    .get-product-container__description ul li img {
        display: none;
    }
}