body, html {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #F4F4F4;
}

* {
    box-sizing: border-box;
}

ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
}

a:link, a:visited {
  color: #000;
  text-decoration: none; /* Убираем подчеркивание */
}

:active, :focus {
    outline: 0;
    outline-offset: 0;
}


.payment__select,
.purchases__input,
.modal__input {
    min-height: 42px;
    max-height: 42px;
    font-weight: 500;
    padding: 0 15px;
    border: 0;
    width: 100%;
    background: #F4F4F4 no-repeat 0 0;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.payment__select:hover,
.purchases__input:hover,
.modal__input:hover,
.payment__select:focus,
.purchases__input:focus,
.modal__input:focus {
    background-color: #eee;
}

.payment__select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(img/native-select.png);
    background-position: right center;
}


.container {
    width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.container--width {
    width: 1150px;
    max-width: 100%;
}

.container-box {
    background-color: #fff;
    box-shadow: 0 26px 25.5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
}

input[type="search"] {
  font-family: "Inter", sans-serif;
  font-size: 14px; /* 1 */
  line-height: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 12px 15px;
  border: 0;
  background-color: #F4F4F4;
  border-radius: 10px;
}

input[type="search"]:focus {
    background-color: #ececec;
    transition: background-color 0.3s ease;
}


button[type="submit"] {
    background-color: #3267ED;
    color: white;
    padding: 12px 15px 11px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}
button[type="submit"]:hover {
    opacity: 0.88;
}



/* Next */
.idesc {
    line-height: 1.4;
    word-break: break-word;
}

.idesc p {
    margin: 15px 0;
}

.idesc h1,
.idesc .h1,
.idesc h2,
.idesc .h2,
.idesc h3,
.idesc .h3,
.idesc h4,
.idesc .h4,
.idesc h5,
.idesc .h5,
.idesc h6,
.idesc .h6 {
    margin: 30px 0 12px 0;
}

.idesc ul {
    padding: revert;
    display: revert;
    margin: revert;
    list-style: revert;
    line-height: 1.64;
    padding-left: 20px;
}

.idesc p+ul {
    margin-top: 0;
}

.idesc a {
    color: inherit;
    text-decoration: revert;
    transition: revert;
}

.idesc a:hover {
    text-decoration: none;
}

.idesc ul>li {
    display: revert;
    margin: revert;
    list-style: revert;
}

.idesc ol {
    padding: revert;
    display: revert;
    margin: revert;
    list-style: revert;
    line-height: 1.64;
}

.idesc p+ul {
    margin-top: 0;
}

.idesc ol>li {
    display: revert;
    margin: revert;
    list-style: revert;
}

.idesc ul ul,
.idesc ul ol,
.idesc ol ol,
.idesc ol ul {
    margin-left: 20px;
}

.idesc p:first-child,
.idesc h1:first-child,
.idesc h2:first-child,
.idesc h3:first-child,
.idesc h4:first-child,
.idesc h5:first-child,
.idesc h6:first-child {
    margin-top: 0 !important;
}

.idesc p:first-child,
.idesc h1:first-child,
.idesc h2:first-child,
.idesc h3:first-child,
.idesc h4:first-child,
.idesc h5:first-child,
.idesc h6:first-child,
.idesc .h1:first-child,
.idesc .h2:first-child,
.idesc .h3:first-child,
.idesc .h4:first-child,
.idesc .h5:first-child,
.idesc .h6:first-child {
    margin-top: 0 !important;
}

.idesc p:last-child,
.idesc h1:last-child,
.idesc h2:last-child,
.idesc h3:last-child,
.idesc h4:last-child,
.idesc h5:last-child,
.idesc h6:last-child,
.idesc .h1:last-child,
.idesc .h2:last-child,
.idesc .h3:last-child,
.idesc .h4:last-child,
.idesc .h5:last-child,
.idesc .h6:last-child {
    margin-bottom: 0 !important;
}

.idesc table {
    width: 100%;
    margin: 12px 0;
    border: 0;
    border-top: 1px solid #ddd;
    border-collapse: collapse;
}

.idesc table td,
.idesc table th {
    padding: 6px 9px;
    border: 0;
    border-bottom: 1px solid #ddd;
}

.idesc table tr:first-child td,
.idesc table th {
    font-weight: bold;
}

.idesc table tr:hover>td {
    background-color: rgba(0, 0, 0, 0.01);
}

.idesc img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}



.wraps {
    min-width: 320px;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}






/* Mobile header */
.mobile-header {
    display: none;
}
.mobile-search {
    display: none;
}
@media all and (max-width: 772px) {
    .mobile-header {
        height: 44px;
        display: block;
    }
    .mobile-header-fly {
        height: 44px;
        padding: 0 15px;
        display: flex;
        gap: 10px;
        align-items: center;
        position: fixed;
        z-index: 777;
        left: 0;
        right: 0;
        top: 0;
        background: #f4f4f4;
        border-bottom: 2px solid #e7e7e7;
    }
    .mobile-header .site-logo {
        flex: none;
        width: 127px;
    }
    .mobile-header .site-logo-inner {
    }
    .mobile-header-controls {
        flex: 1 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }
    .mobile-header-button {
        width: 34px;
        height: 34px;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background-color: #3267ED;
        color: white;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    .mobile-header-button.open {
        transform: rotate(90deg);
    }
    .mobile-header-button--support {
        background-color: #415077;
    }
    .mobile-search {
        width: auto;
        padding: 10px;
        display: block;
        position: fixed;
        z-index: 767;
        left: 0;
        right: 0;
        top: 40px;
        background: #202736;
        opacity: 0;
        transform: translateY(-100px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    [data-fly-toggle="search"] .mobile-search {
        opacity: 1;
        transform: translateY(0);
    }
    [data-fly-toggle="search"] .button-search {
        background-color: #4f5c7a;
    }

    .header__mobile-modal {
        position: fixed;
        top: 0;
        right: 0;
        max-width: 280px;
        background-color: rgb(203 203 203 / 60%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 2px solid #3e7df1;
        padding: 20px 20px;
        min-height: 100vh;
        max-height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
        transform: translateX(100%);
        transition: 0.2s;
    }


}




/*HEADER*/


.header-middle {
    background-color: #fff;
}

.header-middle-container {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
}

.header-nav-container {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.header-logo {
    flex: none;
    margin-top:2px;
}


.header-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #3267ED;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.header-button__icon {
    flex: none;
}

.header-button:hover {
    opacity: 0.7;
}

.header-button:link, .header-button:visited {
    color: #fff;
}

.header-user-panel-link {
    transition: transform 0.3s ease;
}

.header-user-panel-link:hover {
    transform: scale(1.04);
}

.search-form {
    flex: 1 0;
    position: relative;
}

.search-input {
    width: 100%;
}

.search-button {
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease;
}

.search-button:hover {
    opacity: 0.7;
}

.header-support {
    background-color: #3F4F76;
}

.header-lang__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.header-lang__btn img {
    width: 23px;
    height: 23px;
    vertical-align: top;
}
.header-lang__btn::after {
    width: 9px;
    height: 6px;
    content: ' ';
    display: inline-block;
    vertical-align: top;
    background: no-repeat 0 0 url(img/select.png);
    filter: grayscale(1) brightness(0);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.header-lang {
    position: relative;
}
.header-lang-dropdown {
    width: 100px;
    position: absolute;
    z-index: 344;
    left: 0;
    top: 100%;
    margin: 5px 0 0 0;
    background: #eff3ff;
    opacity: 0;
    overflow: hidden;
    border-radius: 12px;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 0 3px #2222;
}
.header-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
}
.header-lang-dropdown-item {
    padding: 5px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-lang-dropdown-item img {
    width: 23px;
    height: 23px;
}
.header-lang-dropdown-item:hover {
    background: #eee;
}


.header-nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-nav-list li a {
    color: #000;
    transition: color 0.3s ease;
}

.header-nav-list li a:hover {
    color: #3267ED;
}


.mobile-header-layer {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 775;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media all and (max-width: 772px) {
    .header {
        width: 280px;
        position: fixed;
        z-index: 777;
        right: 0;
        top: 44px;
        bottom: 0;
        overflow: hidden;
        overflow-y: auto;
        background: #f4f4f4;
        border-left: 2px solid #e7e7e7;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .header.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .mobile-header-layer.open {
        opacity: 1;
        visibility: visible;
    }

    .header-middle-container {
        flex-direction: column;
    }
    .header-logo {
        display: none;
    }
    .header .header-lang {
        display: none;
    }
    .header-button {
        display: none;
    }
    .header-nav-container,
    .header-nav-list {
        width: 100%;
        gap: 0;
        flex-direction: column;
    }
    .header-nav-list a,
    .header-user-panel-link {
        width: 100%;
        display: block;
        padding: 12px 15px;
    }
    .search-button .icon-search {
        margin: 0;
    }
    .search-button__label {
        display: none;
    }
}
/**/


/*MAIN CONTENT*/

.section-banner {
    flex: none;
    background: no-repeat center url(img/bg-main.png);
    background-size: cover;
    width: 100%;
    padding: 30px 0;
    min-height: 334px;
    display: flex;
    align-items: center;
}

.section-banner-container {
    width: 1010px;
    display: flex;
    justify-content: space-between;
}

@media all and (max-width: 915px) {
    .section-banner-container {
        width: auto;
        flex-direction: column;
    }
}

.section-banner-container-left {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 33px;
}
@media all and (max-width: 1215px) {
    .section-banner-container-left {
        gap: 15px;
    }
}

.section-banner-container-right {
    flex: none;
    width: 480px;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.section-banner-container-box {
    display: flex;
    width: 330px;
    height: 254px;
    justify-content: center;
    background: no-repeat top center url(img/image_x.png);
    background-size: contain;
    position: relative;
    font-size: 12px;
}
@media all and (max-width: 1215px) {
    .section-banner-container-left {
        text-align: center;
        margin-bottom: 32px;
    }
    .section-banner-container-right {
        width: 380px;
    }
    .section-banner-container-box {
        width: 230px;
        height: 154px;
        font-size: 11px;
    }
}

.section-banner-container-box-image img {
    box-shadow: 0px 0px 60px #fb05b7ad;
    border-radius: 200px;
}

.section-banner-text-first {
    font-weight: 700;
    font-size: 64px;
    position: relative;
    height: 120px;
}

.section-banner-text-second {
    font-weight: 500;
    font-size: 32px;
    background-color: #0d54ee;
    padding: 7px 20px;
    border-radius: 20px;
    position: absolute;
    top: 60px;
    right: -70px;
    rotate: -3deg;
}
.section-banner-container-box span {
    background-color: #fff;
    position: absolute;
    width: 170px;
    padding: 13px 20px;
    border-radius: 20px;
}

@media all and (max-width: 1215px) {
    .section-banner-text-first {
        font-size: 44px;
        height: 110px;
    }
    .section-banner-text-second {
        font-size: 24px;
    }
    .section-banner-container-box span {
        width: 120px;
        padding: 8px 10px;
    }
}

.section-banner-container-box span:nth-child(1) {
    top: 11px;
    left: -60px;
    rotate: -3deg;
}

.section-banner-container-box span:nth-child(2) {
    top: 65px;
    right: -80px;
    rotate: 6deg;
}
@media all and (max-width: 1215px) {
    .section-banner-container-box span:nth-child(1) {
        left: -20px;
    }
    .section-banner-container-box span:nth-child(2) {
        right: -20px;
    }
}

.section-banner-container-box span:nth-child(3) {
    bottom: -2px;
    left: -30px;
    rotate: 3deg;
}

.section-bankers-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:  80px;
}
@media all and (max-width: 990px) {
    .section-bankers-container {
        flex-direction: column;
        align-items: center;
        gap:  20px;
    }
}

.section-bankers-container a {
    flex: 1 0;
}
.section-bankers-container img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.section-info {
    margin-top: 95px;
}

.section-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 150px;
}
@media all and (max-width: 990px) {
    .section-info-container {
        gap: 30px;
    }
}

.section-info-item {
    width: 300px;
    height: auto;
    position: relative;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    padding-top: 0;
    flex: none;
    box-shadow: 0px 72px 68.8px rgba(0, 0, 0, 0.12);
}
@media all and (max-width: 990px) {
    .section-info-item {
        width: 200px;
        padding: 20px;
    }
}

.section-info-item-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 80px;
    letter-spacing: 1px;
}
@media all and (max-width: 990px) {
    .section-info-item-title {
        font-size: 26px;
        line-height: 26px;
        margin-top: 40px;
    }
}

.section-info-item-desc {
    font-size: 14px;
    margin-top: 38px;
    font-weight: 300;
}
@media all and (max-width: 772px) {
    .section-info-item-title {
        margin-top: 20px;
        font-size: 24px;
        line-height: 24px;
    }
    .section-info-item-desc {
        margin-top: 28px;
    }
}

.section-info-item:nth-child(1) {
    background-color: #E82B3E;
    rotate: 2deg;
}

.section-info-item:nth-child(2) {
    background-color: #43A736;
    rotate: -4deg;
}

.section-info-item:nth-child(3) {
    background-color: #7A2BE8;
    rotate: 4deg;
}

.section-info-item-icon {
    position: absolute;
    top: -40px;
    right: 25px;
}
@media all and (max-width: 990px) {
    .section-info-item-icon {
        top: -30px;
    }
    .section-info-item-icon img {
        width: 64px;
        height: auto;
    }
}

.section-about {
    margin: 50px 0px;
}

.main {
    flex: 1 0;
    padding: 40px 0 50px 0;
}
@media all and (max-width: 772px) {
    .main {
        padding: 26px 0 34px 0;
    }
}



/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    margin-top: 50px;
}
@media all and (max-width: 990px) {
    .products-section {
        margin-top: 25px;
    }
}

.product-main-button {
    display: flex;
    justify-content: space-between;
}

/* Категории товаров */
.categories {
    display: flex;
    row-gap: 30px;
    column-gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}
@media all and (max-width: 772px) {
    .categories {
        gap: 20px;
    }
}


.category, .category-more {
    background: #f4f4f6;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    display: inline-block !important;
    color: #000;
    font-family: inherit;
    opacity: 0.5;
}
@media all and (max-width: 1215px) {
    .category, .category-more {
        font-size: 16px;
    }
}
@media all and (max-width: 772px) {
    .category, .category-more {
        font-size: 14px;
    }
}


.category img {
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 10px;
    height: 22px;
    height: 22px;
}

button.category {
    margin: 0;
    padding: 0;
}

.category:hover, .category-more:hover {
    opacity: 1;
}

.category.active {
    color: black;
    opacity: 1;
}

/* Кнопка "Все категории" - прижимаем к правому краю */
.category-more {
    font-size: 14px;
    background: #E9E9E9;
    padding: 10px 15px;
    margin-left: auto !important;
    position: relative;
    z-index: 1;
    opacity: 1;
}

/* Скрытые элементы */
.category.hidden,
.category-more.hidden {
    display: none !important;
}

/* Карточки товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    justify-content: center;
}

.product-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(25, 35, 45, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(25, 35, 45, 0.1);
}

.product-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon img{
    width: 80px;
    height: 80px;
}

.product-title {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
    font-weight: 400;
    font-family: inherit;
    padding: 20px 0px 20px 0px;
    word-break: break-all;
}

.product-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
    color: black;
    font-family: inherit;
    font-weight: 600;
}

button.header-button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 0 !important;
    cursor: pointer;
}


/**/


/*FOOTER*/

.footer { 
    flex: none; 
}

.footer-middle {
    background-color: #fff;
}

.footer-middle-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media all and (max-width: 1215px) {
    .footer-middle-container {
        align-items: center;
        gap: 30px;
        justify-content: center;
        flex-direction: column;
    }
}


.footer-middle-container-left {
    min-width: 240px;
}
@media all and (max-width: 1215px) {
    .footer-middle-container-left {
        min-width: auto;
        width: auto;
    }
}

.footer-middle-container-center {
    display: flex;
    flex: 1 0;
}

@media all and (max-width: 1215px) {
    .footer-middle-container-center {
        flex: none;
        gap: 30px;
    }
}

.footer-nav-item {
    margin: 0;
    padding: 0;
}

.footer-middle-container-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.footer-nav p {
    font-weight: 700;
    margin-bottom: 36px;
}

.footer-nav-item li {
    margin-bottom: 20px;
}

.footer-nav-item li:last-child {
    margin-bottom: 0px;
}

.footer-nav {
    min-width: 240px;
}
@media all and (max-width: 1215px) {
    .footer-nav {
        min-width: auto;
        width: auto;
    }
}


ul.footer-nav-item a {
    transition: color 0.3s ease;
}

ul.footer-nav-item a:hover {
    color: #3267ED;
}

/**/

/*PAGE*/

.container-page {
    max-width: 1120px;
    margin: 0 auto;
}

.page-width {
    margin: 40px 0 50px 0;  
}

.breadcrumbs {
    margin: 0 0 20px 0;
    font-size: 0;
    line-height: 20px;
}

.breadcrumbs > li:after {
    width: 26px;
    content: '/';
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-size: 12px;
    color: #000;
}

.breadcrumbs > li {
    display: inline;
    vertical-align: top;
    flex-wrap: nowrap;
    text-decoration: underline;
    color: #B3B3B3;
}

.breadcrumbs span {
    font-size: 12px;
}

.breadcrumbs li a {
    color: #B3B3B3;
    transition: color 0.3s ease;
}
.breadcrumbs li a:hover {
    color: #333;
}

.breadcrumbs > li:last-child {
    overflow: hidden;
    text-decoration: none;
    color: #000;
}

.breadcrumbs > li:last-child::after {
    content: none;
}


/*PRODUCT PAGE*/

.product-page-container {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: flex-start;
}
@media all and (max-width: 890px) {
    .product-page-container {
        flex-direction: column;
    }
}

.product-page-about {
    width: 100%;
    border-radius: 20px;
    flex: 1 0;
    background-color: #fff;
    box-shadow: 0px 26px 25.5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.product-page-purchase {
    width: 240px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 26px 25.5px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
@media all and (max-width: 890px) {
    .product-page-purchase {
        width: 100%;
    }
}

.product-width {
    margin-top: 20px;
}

.product-width-title-instoke {
    color: #B3B3B3;
    font-size: 12px;
}

.product-width-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-width-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-width-image {
    flex: none;
    width: 90px;
    height: 90px;
}
.product-width-image img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
}
@media all and (max-width: 890px) {
    .product-width-image {
        width: 45px;
        height: 45px;
    }
}

.product-width-title {
    flex: 1 0;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.product-width-title h1 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    word-break: break-word;
}
@media all and (max-width: 890px) {
    .product-width-title h1 {
        font-size: 16px;
    }
}

.product-width-about {
    margin-top: 20px;
}

.product-page-purchase-price {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.product-page-purchase .product-width-title-instoke {
    text-align: center;
    margin: 10px 0 20px 0;
}

.product-page-purchase .header-button {
    text-align: center;
    margin-bottom: 10px;
}

.product-page-purchase-info span {
    color: #F9A317;
    font-size: 12px;
}

.product-page-purchase-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background-color: #FEF8EE;
    border-radius: 10px;
    padding: 10px 15px;
}

button.header-button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 0 !important;
    cursor: pointer;
}




a.button {
    color: #fff;
    text-decoration: none;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    outline: none;
    background-color: #3267ED;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 0 !important;
    color: #fff;
    transition: opacity 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.button-support {
    background-color: #3F4F76;
}
.button__icon {
    flex: none;
}

.button:hover {
    opacity: 0.7;
}



/**/

/*CONTENT PAGE*/

.list-page-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}

.list-page-container > h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
}


/*PURCHASES PAGE*/

.purchases-page-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}

.purchases-page-container .search-form {
    width: 360px;
    max-width: 100%;
    margin-top: 20px;
}

.title-purchases {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
}

.your-purchases {
    margin-top: 20px;
}

.purchase-product-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 20px;
}

.purchase-product-item-icon {
    flex: none;
    width: 34px;
    height: 34px;
    object-fit: contain;
    vertical-align: top;
}

.purchase-product-item:nth-child(2n+1) {
    background-color: #F4F4F4;
}

.purchase-product-item-title {
    flex: 1 0;
}

.purchase-product-item-quantity {
    flex:none;
    width: 95px;
    font-weight: 600;
}

.purchase-product-item-price {
    flex:none;
    width: 115px;
    font-weight: 600;
}

.purchase-product-item .header-button {
    flex: none;
}

@media all and (max-width: 890px) {
    .purchase-product-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .purchase-product-item-quantity,
    .purchase-product-item-price {
        width: 100%;
    }
}





/**/