/* shop */
/* shop */
/* shop */

.hidden {
    display: none !important;
}

.shop .container {
    margin: 0 auto;
    width: var(--web-width);
    max-width: var(--web-container);
}

.shop-btn {
    margin-top: 10px;
    width: 100%;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .040);
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
}

.shop-btn:hover {
    background-color: var(--color-gray);
    transition: 0.3s;
}

.shop-btn:disabled,
.shop-btn:disabled:hover {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--color-gray) !important;
}

.register-btn {
    margin: 20px 0;
    width: 100%;
}

/* main page */
/* main page */
/* main page */

.shop-live-search-wrap {
    position: relative;
    width: 70%;
}

.shop-live-search-wrap .inputs-wrap {
    display: flex;
    border: 1px solid rgba(0, 0, 0, .080);
    border-radius: 5px;
    height: 36px;
}

.shop-live-search-wrap #shop-search {
    flex-grow: 1;
    border: none;
}

.shop-live-search-wrap .search-btn {
    height: 32px;
    aspect-ratio: 1/1;
    background-color: white;
    border: none;
    align-self: center;
    border-radius: 5px;
}

.shop-live-search-wrap .search-btn:hover {
    background-color: var(--color-gray);
}

.live-search-result {
    position: absolute;
    top: 29px;
    width: 100%;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .095);
    border-top: unset;
    padding: 12px;
    z-index: 2;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.live-search-price {
    min-width: fit-content;
    text-align: right;
}

.live-search-result .search-result-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-search-result .info-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 80%;
}

.live-search-result .info-wrap h3 {
    font-weight: 400;
    font-size: large;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.live-search-result .info-wrap img {
    width: 64px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
}

.live-search-result ul {
    list-style-type: none;
    padding: 0 4px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-search-result li {
    width: 100%;
}

.live-search-result li:hover {
    background-color: rgba(0, 0, 0, .015);
    border-radius: 5px;
}

.live-search-result .img-wrap {
    min-width: 64px;
    aspect-ratio: 1/1;
}

.live-search-result.hidden {
    display: none;
}

.shop-container {
    max-width: 95%;
}

.shop-container .featured {
    font-size: 36px;
    line-height: 1.1em;
    margin: 0 auto 1.5em auto;
    font-weight: 600;
    text-align: center;
}

.shop-wrapper {
    gap: 20px;
    display: grid;
    grid-template-columns: 320px auto;
    margin: 0 auto;
    max-width: var(--web-container);
    padding: 70px 0;
}

.shop-wrapper.no-filter,
.shop-wrapper.menu-layout {
    display: block;
}

.shop-wrapper .category-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--color-gray);
    border-radius: 5px;
}

.shop-wrapper .category-list div div:has(.parent-category),
.shop-wrapper .tag-list div:has(.child-category) {
    translate: 15px -5px;
}

.shop-wrapper .category-list div div:has(.child-category),
.shop-wrapper .tag-list div:has(.child-category) {
    translate: 30px -5px;
}

.shop-category.active {
    font-weight: bold;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 10px;
}

.shop-pagination .pagination-container {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid #666;
}

.shop-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.shop-pagination .pagination span a {
    min-width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.shop-pagination .pagination span {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #222;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.shop-pagination .pagination span:hover {
    background-color: #eee;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 2px 4px rgba(58, 134, 255, 0.2);
}

.tag-list .tag-name {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.tag-list .js-shop-tag {
    position: relative;
}

.tag-list .js-shop-tag input[type="search"] {
    border-radius: 4px;
    padding: 5px 10px;
    border: 1px solid gray;
    display: block;
    width: 100%;
}

.tag-list .js-shop-tag ul {
    background-color: white;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 4px;
    z-index: 10;
    top: calc(100% + 10px);
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.prod-category {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

.tag-search {
    position: relative;
    cursor: pointer;
}

.tag-active-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    overflow-x: hidden;
    padding: 0 5px;
    height: 100%;
    font-size: var(--font-size-sm);
    align-items: center;
}

.category:not(:last-child) {
    align-items: baseline;
    margin-bottom: 8px;
}

.active-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.active-tag {
    border: 1px solid black;
    padding: 4px 12px;
    font-size: var(--font-size-sm);
    line-height: 1em;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.prod-category input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 0 1px var(--color-tertiary);
    border: 2px solid white;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.prod-category input[type="checkbox"]:checked {
    background-color: #4cbb17;
}

.prod-category label {
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.shop-wrapper .category-title {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
}

.shop-wrapper .category-list-title,
.shop-wrapper .recommended-products-title {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.shop-wrapper i,
.box0400 i {
    line-height: 0;
}

.shop-wrapper .products-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.shop-wrapper.no-filter .products {
    grid-template-columns: repeat(5, 1fr);
}

.shop-wrapper .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.box0400 {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    border: 1px solid rgba(0, 0, 0, .040);
    border-radius: 5px;
}

.box0400 .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0px 20px 20px 20px;
    margin-top: auto;
}

.box0400 .image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .03);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.box0400 .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.box0400 .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.box0400 .btn-wrap {
    display: flex;
}

.box0400 .btn-wrap .add-to-cart {
    pointer-events: none;
}

.box0400 .product-name {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 20px 5px 20px;
}

.box0400 .product-name span {
    font-size: 14px;
    font-weight: 400;
    line-height: .8rem;
}

.box0400 .product-price {
    font-weight: 500;
    text-align: center;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: .5em 0;
}

.box0400 .more-information {
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid var(--color-gray);
    width: 100%;
    height: 36px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    line-height: 3;
}

.box0400 .btn-wrap {
    display: flex;
    flex-direction: column;
}

.box0400 .product-monthly {
    font-size: 0.8em;
}

.box0400 .product-price .lowest-price-info {
    font-size: var(--font-size-xxs);
    font-weight: 400;
    color: #666;
    margin-top: 4px;
    line-height: 1.2;
}

.box0400 .product-price .lowest-price {
    font-weight: 500;
    color: #333;
}

/* user pages */
/* user pages */
/* user pages */

.registration-wrap .container {
    margin: 0 auto;
    min-height: 600px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.registration-wrap .container .form-item {
    width: 400px;
}

.registration-wrap .title,
.registration-wrap .reg-title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.registration-wrap .form-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    width: 100%;
}

.registration-wrap input {
    width: 100%;
    border: 1px solid #a4a4a4;
    padding: 10px 30px 10px 10px;
    border-radius: 5px;
}

.registration-wrap label {
    font-size: var(--font-size-xs);
}

.registration-wrap .recovery {
    text-decoration: underline;
}

.registration-wrap .error {
    color: red;
    margin-bottom: 20px;
    text-align: center;
}

.registration-wrap .activation-link {
    font-size: 17px;
    border: 1px solid var(--color-gray);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.registration-wrap .activation-link a {
    text-decoration: none;
}

.promo-price {
    color: red;
}

.line-through {
    text-decoration: line-through;
}

.price.normal-price.line-through {
    font-size: var(--font-size-sm);
}

/* cart */
/* cart */
/* cart */

.cart-wrap .container {
    margin: 0 auto;
    width: var(--web-width);
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-wrap .cart-empty {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    opacity: 0.5;
}

.additional-details hr {
    background-color: var(--color-gray);
}

.cart-wrap .cart-empty i {
    font-size: 34px;
}

.cart-wrap .title {
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    width: 100%;
}

.cart-wrap .cart-content {
    display: grid;
    grid-template-columns: 70% auto;
    gap: 10px;
    cursor: default;
    align-items: flex-start;
    overflow-y: visible;
}

.additional-details {
    position: sticky;
    align-items: start;
    padding: 20px;
    background-color: var(--anti-flash-white);
    height: fit-content;
    margin-top: 30px;
    top: 0px;
}

.additional-details p {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
}

.additional-details .summary-info {
    padding-bottom: 10px;
}

.additional-details .summary-info div {
    display: flex;
    justify-content: space-between;
}

.additional-details .summary-info p {
    font-size: var(--font-size-sm);
    font-weight: 400;
    padding-bottom: 0;
}

.additional-details .summary-total-value {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 400;
    padding-top: 10px;
}

.additional-details .discount-code {
    display: grid;
    grid-template-columns: 70% auto;
    gap: 10px;
    padding-bottom: 25px;

    /* 
  
  @TODO
  
  */

    display: none;
}

.additional-details .discount-code input {
    border: 1px solid #a4a4a4;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
}

.additional-details .discount-code button {
    display: flex;
    font-size: 12px;
    border: 1px solid var(--color-gray);
    background: #fff;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: var(--font-family);
}

.additional-details .discount-code button:hover {
    background-color: var(--color-gray);
    transition: 0.3s;
    cursor: pointer;
}

.additional-details .free-delivery {
    text-align: center;
}

.additional-details .free-delivery .free {
    color: #4cbb17;
}

.additional-details .free-delivery .paid {
    color: red;
    font-size: 14px;
}

.additional-details .minimum-delivery-from-warning {
    color: red;
    font-size: 14px;
    text-align: center;
}

.registration-wrap.cart-registration .options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.registration-wrap.cart-registration .no-login,
.registration-wrap.cart-registration .register-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.registration-wrap.cart-registration .no-login p,
.registration-wrap.cart-registration .register-form p {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.cart-products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 5px;
    border: 1px solid gainsboro;
    transition: all 0.3s;
    text-transform: none;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: white;
}

.cart-wrap .item-list-header {
    border: 1px solid transparent;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 30px;
}

.cart-wrap .cart-items-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.cart-wrap .item-list-header .quantity {
    width: 50%;
    text-align: center;
}

.cart-wrap .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-wrap .quantity-btn {
    font-size: 20px;
    padding: 0px 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-wrap .quantity-btn:hover {
    background-color: #bbb;
}

.cart-wrap .quantity-btn:disabled {
    opacity: 0.5;
    background-color: var(--color-gray);
    cursor: not-allowed;
}

.cart-wrap .quantity-input {
    width: 50px;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    background-color: white;
}

.quantity-input{
    white-space: nowrap;
}

.cart-wrap .item-details,
.cart-wrap .item-values {
    display: flex;
    gap: 20px;
}

.cart-wrap .item-details {
    flex: 1;
}

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

.cart-wrap .quantity-input[type="number"] {
    -moz-appearance: textfield;
}

.cart-wrap .quantity-input {
    padding: 10px 0;
    min-width: 60px;
}

.unit-suffix,
.unit-label {
    color: #666;
    font-size: 0.9em;
    white-space: nowrap;
}

.cart-wrap .item-img {
    width: 100px;
    object-fit: cover;
}

.cart-wrap .item-name {
    flex-grow: 1;
}

.cart-wrap .item-name .item-additions {
    font-size: 13px;
}

.cart-wrap .final-item-price {
    min-width: 100px;
    text-align: end;
    align-self: center;
}

.cart-wrap [type="submit"] {
    cursor: pointer;
}

.cart-wrap input:not(.btn),
.cart-wrap textarea {
    width: 100%;
    border: 1px solid var(--color-gray);
    padding: 10px 10px 10px 10px;
}

.cart-wrap textarea {
    height: 90px;
}

.cart-wrap .cart-pos-delete-btn a,
.cart-wrap .cart-delete-btn a {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-family);
    height: 37px;
    background: transparent;
    text-transform: uppercase;
}

.cart-wrap .cart-pos-delete-btn a:hover,
.cart-wrap .cart-delete-btn a:hover {
    background-color: var(--color-gray);
    transition: 0.3s;
    cursor: pointer;
}

.cart-wrap .cart-pos-delete-btn i,
.cart-wrap .cart-delete-btn i {
    line-height: 0;
    font-weight: 500;
}

.cart-wrap .cart-delete-btn {
    width: 100%;
}

.cart-wrap span:has(input[type="number"]) {
    width: 40%;
    max-width: 100px;
}

.cart-wrap input[type="number"] {
    width: 100%;
    border: 1px solid var(--color-gray);
}

.price-gross {
    text-align: end;
    width: 50%;
}

.cart-wrap .number-input {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    min-width: 250px;
}

.cart-wrap .delivery-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-wrap .mobile-header {
    display: none;
}

.cart-wrap .delivery-options label {
    translate: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.cart-wrap input[type="radio"] {
    width: min-content;
}

.additional-details .cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
}

.additional-details .cart-buttons input:not(.btn),
.additional-details .cart-buttons a:not(.btn) {
    background-color: #fff;
}

.additional-details .cart-buttons input,
.additional-details .cart-buttons a {
    text-align: center;
}

.cart-summary .total-value {
    text-align: end;
}

.cart-summary .container,
.order-summary .container {
    margin: 0 auto;
    width: var(--web-width);
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-summary .wrapper.cart-content {
    justify-content: unset;
}

.cart-summary.summary .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cart-summary.summary .wrapper {
    justify-content: unset;
}

.cart-summary.summary .position-product {
    width: 100%;
}

.cart-summary.summary .position-product .item-list-header {
    border: 1px solid transparent;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 30px;
}

.cart-summary.summary .position-product .item-list-header .item-name {
    width: 100%;
    max-width: none;
}

.cart-summary.summary .position-product .item-list-header .number-input {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    min-width: 250px;
}

.cart-summary.summary .position-product .item-list-header .final-item-price,
.cart-summary.summary .position-product .cart-products .final-item-price {
    min-width: 70px;
    text-align: end;
    align-self: center;
}

.cart-summary.summary .position-product .cart-products .item-name {
    flex-grow: 1;
}

.cart-summary.summary .position-product .cart-products .item-name .item-additions {
    font-size: 13px;
    font-weight: 400;
}

.cart-summary.summary .position-product .cart-products .item-content {
    display: flex;
    gap: 20px;
}

.cart-summary.summary .position-product .cart-products .number-input {
    display: flex;
    gap: 20px;
}

.cart-summary.summary .position-product .cart-products .price-gross,
.cart-summary.summary .position-product .item-list-header .price-gross {
    min-width: 140px;
    text-align: center;
}

.cart-summary.summary .position-product .item-list-header .price-gross {
    text-align: end;
}

.cart-summary.summary .position-product .cart-products .quantity-wrapper,
.cart-summary.summary .position-product .item-list-header .quantity {
    min-width: 30px;
}

.cart-summary.summary .position-product .mobile-header {
    display: none;
}

.cart-summary.summary .position-product .header {
    padding: 0 15px;
    height: 30px;
}

.cart-summary.summary .position-product .product-item {
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    border: 1px solid gainsboro;
    background-color: transparent;
    transition: all 0.3s;
    text-transform: none;
    font-size: 16px;
    padding: 0px 15px;
    margin-bottom: 10px;
}

.cart-summary.summary .item-summary {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 15px 0;
}

.cart-summary.summary .item-summary .item-img {
    display: flex;
    align-items: center;
}

.cart-summary.summary .product-item .item-img img {
    max-height: 64px;
    width: 72px;
    padding: 8px;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

.cart-summary.summary .payment-menthod,
.cart-summary.summary .shipping-address,
.cart-summary.summary .invoice-address,
.cart-summary.summary .client-notices {
    padding: 15px;
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    border: 1px solid gainsboro;
    background-color: transparent;
    transition: all 0.3s;
    text-transform: none;
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-summary.summary .payment-menthod {
    display: flex;
}

.cart-summary.summary .payment-menthod p,
.cart-summary.summary .shipping-address p,
.cart-summary.summary .invoice-address p,
.cart-summary.summary .client-notices p {
    font-weight: 400;
}

.cart-summary.summary .additional-details {
    margin: 0;
}

.cart-summary .container .title {
    text-transform: none;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    width: var(--web-width);
    padding-bottom: 30px;
}

.cart-summary .container .wrapper.cart-content .position-product {
    width: 100%;
    border: none;
    border: 1px solid gainsboro;
    padding: 30px 15px;
    border-radius: 5px;
}

.cart-summary .container .wrapper.cart-content .additional-details {
    margin: 0;
}

.cart-summary .container .wrapper.cart-content {
    display: grid;
    grid-template-columns: 70% auto;
    gap: 10px;
    cursor: default;
    align-items: flex-start;
    overflow-y: visible;
}

.cart-summary .container .wrapper.cart-content.inpost-point-delivery {
    grid-template-columns: 60% auto;
}

.cart-summary.summary .container .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 70% auto;
    gap: 10px;
    cursor: default;
    align-items: flex-start;
    overflow-y: visible;
}

.company {
    max-height: 200px;
    overflow: hidden;
}

.company.show {
    max-height: 0 !important;
    overflow: hidden;
}

.cart-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.js-inpost-chosen {
    background-color: var(--color-gray);
    padding: 20px;
}

.js-change-point {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-family);
    background: transparent;
    text-transform: uppercase;
}

.js-change-point:hover {
    background-color: var(--color-gray);
    transition: 0.3s;
    cursor: pointer;
}

.registration-wrap .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1710px;
}

.registration-wrap .options {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.registration-wrap .login-form,
.registration-wrap .no-login,
.registration-wrap .register-form {
    border: 1px solid var(--color-gray);
    padding: 20px;
}

.register-form .login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.registration-wrap .login-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.registration-wrap .login-input {
    display: flex;
    width: 400px;
}

.cart-summary .wrapper,
.order-summary .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

.payment-summary {
    display: flex;
    flex-direction: column;
}

.payment-summary div {
    min-height: 32px;
}

.payment-summary div:nth-last-child(2) {
    margin-bottom: 10px;
}

.payment-summary span {
    font-weight: 600;
}

.payment-icon {
    max-width: 48px;
    max-height: 32px;
    margin-left: 10px;
    vertical-align: middle;
}

.cart-summary .title,
.order-summary .title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.cart-summary .position-product {
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    width: var(--web-width);
    border: 1px solid var(--color-gray);
    padding: 20px 30px;
}

.cart-summary .item-img {
    min-width: 100px;
    width: 100px;
    object-fit: cover;
}

.cart-summary .item-img img {
    width: 100%;
}

.cart-summary .amount-price {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
}

.cart-summary .amount-price .final-item-price {
    text-align: end;
    min-width: 100px;
    max-width: 200px;
}

.delivery-price-with-details {
    text-align: end;
}

.delivery-price-details {
    display: block;
    color: #666;
}

.delivery-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.delivery-tooltip-icon {
    font-size: 0.8em;
    color: #666;
    cursor: pointer;
}

.delivery-tooltip-bubble {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    max-width: 240px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px 10px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-93%);
    transition: opacity 0.2s ease;
    font-size: 0.75em;
    line-height: 1.4;
    white-space: normal;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.delivery-tooltip-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateX(-85%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.delivery-tooltip-wrapper:hover .delivery-tooltip-bubble {
    visibility: visible;
    opacity: 1;
}

.cart-summary .product-item {
    padding: 5px 10px;
    display: grid;
    grid-template-columns: 100px auto 200px;
}

.cart-summary .product-item:nth-of-type(odd) {
    background-color: var(--color-gray);
}

.cart-summary .product-item {
    gap: 20px;
}

.cart-summary .item-summary {
    display: flex;
    flex-direction: column;
}

.cart-summary .item-summary span a {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.cart-summary .item-summary .item-additions {
    font-size: var(--font-size-xs);
    padding-left: 10px;
}

.cart-summary .total-value {
    margin-top: 20px;
    border-bottom: 1px solid var(--color-gray);
}

.cart-summary .delivery-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 13px 1px var(--color-gray);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.cart-summary p,
.order-summary p {
    font-weight: 500;
}

.cart-summary .btn-wrap {
    display: flex;
    gap: 10px;
}

.order-summary .delivery-info {
    display: flex;
    flex-direction: column;
    width: 50vw;
    gap: 15px;
    box-shadow: 0 0 13px 1px var(--color-gray);
    border-radius: 10px;
    padding: 20px;
}

.order-summary .order-number,
.order-summary .order-number div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.order-summary .order-recipient {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.order-summary .order-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-summary .order-contact div {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.order-summary .position-products {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.order-summary .position-products .position-product {
    border-bottom: 1px var(--color-gray) solid;
    padding: 10px 0;
}

.order-summary .position-products .product-header {
    display: grid;
    grid-template-columns: auto 100px 100px;
    border-bottom: 1px solid var(--color-gray);
    padding: 40px 0 10px 0;
}

.order-summary .position-products .product-item {
    display: grid;
    grid-template-columns: auto 200px;
}

.order-summary .position-products .product-info {
    display: flex;
}

.order-summary .position-products .product-price {
    text-align: right;
}

.order-summary .position-products .product-details {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    font-size: 13px;
}

.order-summary .position-products .product-addition,
.order-summary .position-products .product-info {
    display: flex;
    flex-direction: column;
}

.order-summary .position-products .product-delivery {
    display: flex;
    gap: 10px;
    align-self: flex-end;
    padding-top: 10px;
}

.order-summary .position-products .product-total {
    display: flex;
    gap: 10px;
    align-self: flex-end;
    padding: 10px 0;
}

.order-summary .product-quantity-mobile {
    display: none;
}

.order-summary .product-cost {
    display: flex;
    justify-content: space-between;
}

.cart-address {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 40px;
}

.delivery-details {
    margin-bottom: 40px;
}

#geowidget-v5-iframe-render {
    min-height: 500px;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

.payments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

.delivery-option,
.payment-option,
.cash-on-delivery {
    display: flex;
    gap: 10px;
    text-transform: uppercase;
    max-height: 48px;
    -webkit-user-drag: none;
    user-select: none;
    background-color: white;
}

.delivery-option label,
.payment-option label,
.cash-on-delivery label {
    display: flex;
    width: 100%;
    border-radius: 5px;
    height: 48px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid gainsboro;
    transition: all 0.3s;
    text-transform: none;
    font-size: 16px;
    padding: 0 10px;
}

.payment-option label,
.cash-on-delivery label {
    justify-content: start;
    padding-left: 30px;
}

.delivery-option label .delivery-icon {
    display: flex;
    align-items: center;
}

.delivery-option input[type="radio"],
.payment-option input[type="radio"],
.cash-on-delivery input[type="checkbox"] {
    display: none;
}

.delivery-option input[type="radio"]:hover+label,
.payment-option input[type="radio"]:hover+label,
.cash-on-delivery input[type="checkbox"]:hover+label {
    background-color: var(--color-gray);
    transition: 0.3s;
    cursor: pointer;
}

.delivery-option input[type="radio"]:checked+label,
.payment-option input[type="radio"]:checked+label,
.cash-on-delivery input[type="checkbox"]:checked+label {
    border: 1px solid #04ca04 !important;
    background: #04ca043d;
}

.invalid-selection {
    border: 1px solid red !important;
}

.valid-selection {
    border: 1px solid #04ca04 !important;
}

.delivery-option img,
.payment-option img {
    max-height: 48px;
    width: 72px;
    padding: 8px;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

.delivery-option #geowidget,
.delivery-option .js-inpost-chosen {
    display: none;
}

.cart-address-form {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: 600px;
    margin: 0 auto;
}

.cart-address-form .row {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

.cart-address-form .address {
    display: grid;
    grid-template-columns: 50% 140px 140px;
}

.cart-address-form .cart-form-cell {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.address-btn {
    width: 100%;
    text-align: center;
}

.cart-address-form .cart-form-cell:has(input[type="checkbox"]),
.cart-address-form .cart-form-cell.terms:has(input[type="checkbox"]) {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: start;
}

.cart-address-form .cart-form-cell input[type="text"],
.cart-address-form .cart-form-cell textarea {
    border: 1px solid #a4a4a4;
    padding: 10px 30px 10px 10px;
    border-radius: 5px;
}

.cart-address-form .cart-form-cell.building-number .formError {
    position: absolute;
    transform: translateY(62px);
}

.cart-address-form .cart-form-cell.terms {
    padding: 10px 0;
    user-select: none;
}

.cart-address-form .form-group.cart-form-cell.terms {
    flex-direction: row;
}

.cart-address-form .cart-form-cell.terms label {
    display: flex;
    flex-direction: row;
}

.cart-address-form .cart-form-cell.terms label a {
    text-decoration: none;
}

.cart-address-form .cart-form-cell.terms label a:hover {
    text-decoration: underline;
}

.cart-form-cell input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 14px;
    min-width: 14px;
    height: 14px;
    box-shadow: 0 0 0 1px var(--color-tertiary);
    border: 2px solid white;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    margin-top: 5px;
}

.cart-form-cell input[type="checkbox"]:checked {
    background-color: #4cbb17;
}

.cart-form-cell label {
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

/* Radio button styling for asCompany and useDifferentAddress */
.cart-form-cell.order-type,
.cart-form-cell.delivery-address-type {
    padding: 15px 0;
    margin-top: 15px;
}

.cart-form-cell.order-type>label,
.cart-form-cell.delivery-address-type>label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    color: var(--color-black);
}

.cart-form-cell input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 14px;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--color-tertiary);
    border: 2.5px solid white;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    margin-right: 6px;
    vertical-align: middle;
}

.cart-form-cell input[type="radio"]:checked {
    background-color: #2c2c2c;
}

.cart-form-cell input[type="radio"]+label {
    cursor: pointer;
    user-select: none;
    display: inline;
    margin-right: 20px;
    font-size: 0.9rem;
}

/* Hide/show company fields based on selection */
.company-fields {
    display: none;
}

/* Hide/show delivery address fields based on selection */
.delivery-address-fields {
    display: none;
    padding: 10px 0;
}

.formError {
    font-size: var(--font-size-xs);
}

.product-form.terms {
    padding-top: 10px;
    user-select: none;
}

.product-form.terms label {
    display: flex;
    flex-direction: row;
}

.product-form.terms label input {
    margin-right: 15px;
    width: auto;
}

.product-form.terms label a {
    text-decoration: none;
}

.product-form.terms label a:hover {
    text-decoration: underline;
}

/* category page */
/* category page */
/* category page */

.breadcrumbs .container {
    max-width: var(--web-container);
}

.products-wrap .search-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.products-wrap .search-wrapper input,
.products-wrap .search-wrapper select {
    border: 1px solid rgba(0, 0, 0, .080);
    padding: 5px;
    background: transparent;
    padding: 0.6em;
    border-radius: 5px;
    font-family: var(--font-family);
}

.products-wrap .header-wrap {
    width: 100%;
    padding: 0 0 40px 0;
    display: flex;
}

.category-page .category-descr-wrap {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: var(--web-container);
    padding: 40px 0 40px 0;
    gap: 20px;
}

.category-page .category-descr-wrap img {
    width: 23.5%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.category-page .category-descr {
    margin: 0 auto;
    max-width: var(--web-container);
    padding: 60px 0 80px 0;
}

.category-page .wrap {
    display: flex;
}

/* product page */
/* product page */
/* product page */

.product-wrap .container {
    margin: 0 auto;
    padding: 0 0 90px 0;
    width: var(--web-width);
    max-width: var(--web-container);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.6%;
}

.product-wrap .content {
    display: grid;
    gap: 10px;
    margin: 0 auto;
}

.product-wrap .top {
    order: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10%;
}

.product-wrap.alternative .top {
    order: unset;
}

.product-wrap .top h1 {
    padding-bottom: 2rem;
}

.product-wrap .scroll-tab {
    max-width: none;
}

.product-wrap .article {
    padding-top: 1rem;
}

.product-wrap .price {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 600;
    gap: 5px;
}

.product-wrap .lowest-price-info {
    font-size: var(--font-size-xxs);
}

.product-wrap .product-price {
    padding: .2rem 0;
}

.product-wrap .product-description {
    order: 3;
}

.product-wrap .product-form {
    order: 2;
    position: sticky;
    top: 10px;
}

.product-wrap .articleForm {
    margin-top: 20px;
}

.product-wrap .articleForm form {
    background: none;
    padding: 0;
}

.product-wrap .free-delivery .free {
    color: #4cbb17;
}

.product-wrap .free-delivery .paid {
    color: red;
    font-size: 14px;
}

.product-wrap .minimum-delivery-from .not-available {
    color: red;
    font-size: 14px;
}

.product-wrap .title {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
}

.product-wrap form {
    margin-top: 10px;
}

.add-product-modal input[type="checkbox"] {
    border: 1px solid #a4a4a4;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 0 1px var(--color-tertiary);
    border: 2px solid white;
}

.add-product-modal input[type="checkbox"]:checked {
    background-color: #4cbb17;
}

.add-product-modal .product-row input[type="number"] {
    margin: 0px;
}

.add-product-modal {
    height: 0px;
}

.add-product-modal:has(.product-row) {
    height: auto;
}

.add-product-modal .product-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.add-product-modal.quantity .product-row {
    flex-direction: row;
    align-items: center;
}

.add-product-modal.quantity .product-label {
    margin-bottom: 0;
}

.add-product-modal .product-row.units-enabled {
    flex-direction: row;
    align-items: center;
}

.add-product-modal .product-row.units-enabled .product-label {
    margin-bottom: 0;
}

.add-product-modal .product-label {
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 5px;
    display: inline-block;
}

.add-product-modal label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.add-product-modal .product-row>div {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.add-product-modal .product-row select,
.add-product-modal .product-row .product-addition,
.add-product-modal .product-row input[type="number"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: white;
    font-size: 14px;
    transition: border-color 0.3s;
    gap: 0.5rem;
}

.add-product-modal .product-row .product-addition {
    display: flex;
    align-items: center;
}

.add-product-modal .product-row input[type="number"] {
    width: 100px;
}

.add-product-modal .product-row select:focus {
    border-color: var(--color-tertiary);
    outline: none;
}

.alt-card-product-form .formRow div {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: white;
    font-size: 14px;
    transition: border-color 0.3s;
    align-items: center;
}

.alt-card-product-form .formRow.rodo-01,
.alt-card-product-form .formRow.rodo-02 {
    margin-left: 10px;
}

.alt-card-product-form .formRow input[type="checkbox"],
.alt-card-product-form .formRow input[type="radio"] {
    border: 1px solid #a4a4a4;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 0 1px var(--color-tertiary);
    border: 2px solid white;
    padding: 0;
    border-radius: 0;
}

.alt-card-product-form .formRow input[type="checkbox"]:checked,
.alt-card-product-form .formRow input[type="radio"]:checked {
    background-color: #4cbb17;
}

.alt-card-product-form .formRow input[type="radio"] {
    border-radius: 50%;
}

.alt-card-product-form .formRow a:hover {
    text-decoration: underline;
}

.product-wrap input[type="number"] {
    width: 30%;
    border: 1px solid var(--color-tertiary);
    padding-left: 10px;
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    margin: 10px 10px;
}

.product-wrap .tags {
    font-size: 14px;
    font-weight: 300;
    padding-top: 5px;
}

.gallery-container {
    position: relative;
    max-width: none;
    margin-right: 0;
    display: flex;
}

.gallery-container:has(.thumbnails) {
    padding-left: 90px;
}

.main-image {
    margin: 0 auto;
    align-self: center;
}

.main-image img {
    object-fit: contain;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.thumbnails {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.thumbnails::-webkit-scrollbar {
    width: 6px;
}

.thumbnails::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.thumbnails img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    outline: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnails img:hover {
    border: 1px solid var(--color-tertiary);
}

.product-wrap.not-available .gallery img,
.product-wrap.not-available .lightbox img {
    filter: grayscale(100%);
}

.product-wrap.not-available .out-of-stock {
    color: red;
    font-weight: 600;
    padding-bottom: 5px;
    font-size: 22px;
}

.lightbox {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: -1;
    padding: 20px 0;
    display: none;
    position: fixed;
    background-color: white;
}

.lightbox.open {
    z-index: 10000;
    display: flex;
}

.lightbox img {
    margin: auto;
    max-height: 100%;
}

.lightbox .prev,
.lightbox .next,
.lightbox .close {
    border: none;
    font-size: 56px;
    position: absolute;
    background-color: transparent;
    opacity: 0.8;
}

.lightbox .prev,
.lightbox .next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .prev {
    left: 10px;
}

.lightbox .next {
    right: 10px;
}

.lightbox .close {
    top: 10px;
    right: 22px;
}

.sticky-tabs {
    display: flex;
    gap: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
    z-index: 10;
}

.scroll-tab {
    flex: 1;
    padding: 10px;
    background: #f4f4f4;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    max-width: 300px;
}

.scroll-tab.active {
    background: #ddd;
    font-weight: bold;
}

.product-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.product-section .article {
    padding: 20px;
}

.product-section ul {
    padding-left: 20px;
}

.product-section ul li span {
    margin-right: 5px;
}

.cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #ffffffee;
    color: #1f1f1f;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: fit-content;
    min-width: 220px;
    text-align: center;
    animation: fadeInUp 0.35s ease-out forwards, fadeOut 0.2s ease-in 1.1s forwards;
    opacity: 0;
}

.cart-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.popup-icon {
    font-size: 26px;
    color: #4caf50;
}

.popup-text {
    font-size: 16px;
    font-weight: 500;
}

p.closed-notice {
    font-size: 1rem;
    color: red;
    text-align: center;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translate(-50%, -52%) scale(0.95);
    }
}

.product-wrap.alternative .product-description-bar {
    background-color: #f4f4f4;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: bold;
}

.product-wrap.alternative .user-price {
    font-size: 20px;
    font-weight: 600;    
}

.product-wrap.alternative .switch-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.product-wrap.alternative .switch-label {
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.15s ease;
    cursor: pointer;
    user-select: none;
}

.product-wrap.alternative .switch-label.active {
    color: black;
    font-weight: 700;
}

.product-wrap.alternative .switch {
    display: flex;
}

.product-wrap.alternative .slider {
    display: inline-block;
    width: 3.5em;
    height: 2em;
    background-color: #cccccc;
    border-radius: 1em;
    position: relative;
    transition: 0.1s all ease-in-out;
}

.product-wrap.alternative .slider::after {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-color: #fff;
    border-radius: 0.75em;
    position: absolute;
    top: 0.25em;
    transform: translateX(0.25em);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
    transition: 0.1s all ease-in-out;
}

.product-wrap.alternative .switch input[type="checkbox"]:checked + .slider::after {
    transform: translateX(1.75em);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.product-wrap.alternative .switch input[type="checkbox"] {
    display: none;
}

.product-wrap.alternative .switch input[type="checkbox"]:active + .slider::after {
    width: 3em;
}

.product-wrap.alternative .switch input[type="checkbox"]:checked:active + .slider::after {
    transform: translateX(0.25em);
}

.product-wrap.alternative .price {
    flex-direction: row;
    font-size: 18px;
    font-weight: 400;
    justify-content: space-between;
}

.product-wrap.alternative .price span {
    text-align: right;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-wrap.alternative .product-form {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.product-wrap.alternative .product-pdf-download,
.product-wrap.alternative .product-form .product-price,
.product-wrap.alternative .product-form .spec-table {
    background-color: #f4f4f4;
    padding: 24px;
    border-radius: 15px;
}

.product-wrap.alternative .price.promo-price {
    font-weight: 600;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.product-wrap.alternative .specification ul {
    padding: 10px;
}

.product-wrap.alternative .specification li {
    list-style-type: none;
    padding: 4px 16px;
    display: flex;
    font-weight: 600;
    gap: 6px;
}

.product-wrap.alternative .specification li:nth-of-type(odd) {
    background-color: #ddd;
}

.product-wrap.alternative .specification li span {
    font-weight: 400;
}

.product-wrap.alternative .specification .field-title {
    font-weight: 700;
}

.product-wrap.alternative .product-pdf-download .field-title {
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.product-wrap.alternative .product-pdf-download .pdf-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary, #007bff);
    text-decoration: none;
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.product-wrap.alternative .product-pdf-download .pdf-download-link:hover {
    background-color: #e9e9e9;
}

.product-wrap.alternative .product-pdf-download .pdf-download-link:hover i {
    color: #dc3545;
}

.product-wrap.alternative .product-pdf-download .pdf-download-link i {
    font-size: 1.2em;
    transition: .2s;
    color: #999;
}

/* Product addition modal form */
.modal {
    display: none;
    /* Hide modal by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 50px;
    z-index: 1000;
}

.modal.active {
    display: block;
    /* Show modal */
}

.overlay {
    display: none;
    /* Hide overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
    /* Show overlay */
}

/* address modal */

.modal-address {
    align-items: center;
    padding-right: 50px;
}

.modal-address-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 20px;
}

.modal-address-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow: auto;
}

.modal-address-option {
    display: flex;
    text-transform: uppercase;
    -webkit-user-drag: none;
    user-select: none;
}

.modal-address-option label {
    display: flex;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    height: auto;
    align-items: center;
    border: 1px solid gainsboro;
    transition: all 0.3s;
    text-transform: none;
    font-size: 16px;
}

.modal-address-option input[type="radio"] {
    display: none;
}

.modal-address-option input[type="radio"]:hover+label {
    background-color: var(--color-gray);
    transition: 0.3s;
    cursor: pointer;
}

.modal-address-option input[type="radio"]:checked+label {
    border: 1px solid #04ca04;
    background: #04ca043d;
}

.modal-address-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-create-address form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-create-address .cell {
    display: flex;
    justify-content: space-between;
}

.modal-create-address input {
    border: 1px solid #a4a4a4;
    padding: 10px 30px 10px 10px;
    border-radius: 5px;
}

.modal-create-address label {
    font-size: 18px;
    align-self: center;
}

.modal-create-address .formError {
    position: absolute;
    transform: translateY(28px);
}

.shop-wrapper .category-list div:has(.collapsible) {
    translate: 0px 0px;
}

.collapsible {
    display: flex;
    flex-direction: column;
}

.toggle-filters {
    display: none;
    justify-content: space-between;
}

.filter-arrow {
    transition: transform 0.3s ease;
    margin-left: 8px;
    line-height: normal !important;
}

.toggle-filters.active .filter-arrow {
    transform: rotate(180deg);
}

.filter-badges {
    margin-top: 10px;
}

.filter-badges a {
    font-size: .9em;
    text-decoration: underline;
    cursor: pointer;
    color: var(--color-tertiary);
}

.delivery-check-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.delivery-check-label {
    font-weight: 600;
    margin-right: .5rem;
}

.delivery-check-row input,
.delivery-check-row button {
    padding: .5rem .75rem;
    border: 1px solid #ddd;
    border-radius: .375rem;
    font-size: .9rem;
}

.delivery-check-row #dc_street {
    width: 160px;
}

.delivery-check-row #dc_building {
    width: 100px;
}

.delivery-check-row #dc_apartment {
    width: 120px;
}

.delivery-check-row #dc_zip {
    width: 130px;
}

#delivery-check-result {
    border-radius: .5rem;
    font-weight: 600;
    display: block;
    padding: 0.2rem .8rem;
}

#delivery-check-result.loading {
    background: #fafafa;
    border: 1px dashed #ddd;
    color: #666;
}

#delivery-check-result.success {
    background: #f2fbf6;
    border: 1px solid #ccebd6;
    color: #216e3a;
}

#delivery-check-result.error {
    background: #fff5f5;
    border: 1px solid #f4cccc;
    color: #a42424;
}


@media (max-width: 1200px) {
    .shop-wrapper {
        grid-template-columns: 260px 1fr;
        padding: 40px 0px;
    }

    .shop-wrapper .products,
    .shop-wrapper.no-filter .products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 20px;
    }

    .box0400 .product-name span {
        display: none;
    }

    .box0400 .product-price {
        font-size: 24px;
    }

    .box0400 .product-price .lowest-price-info {
        font-size: 10px;
    }

    .no-filter .box0400 .product-price {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .header .search {
        width: 80%;
    }

    .header .search button {
        width: 5%;
    }

    .shop-wrapper {
        flex-direction: column;
    }

    .shop-wrapper .category-list,
    .shop-wrapper .products-wrap {
        width: 100%;
    }

    .shop-live-search-wrap {
        width: 40vw;
    }

    .category-page .category-descr-wrap {
        flex-direction: column;
    }

    .category-page .category-descr-wrap img {
        width: 50%;
    }

    .product-wrap .content {
        width: 100%;
    }

    .cart-wrap .cart-content {
        width: 100%;
    }

    .cart-wrap .item-list-header {
        display: none;
    }

    .cart-wrap span:has(.mobile-header) {
        display: flex;
        flex-direction: row !important;
        gap: 10px;
    }

    .cart-wrap .mobile-header {
        display: block;
        font-weight: 500;
    }

    .cart-wrap .item-details {
        display: flex;
    }

    .cart-wrap .cart-products {
        flex-direction: column;
        width: 100%;
        align-items: start;
    }

    .cart-wrap .item-values {
        width: 100%;
        justify-content: space-between;
    }

    .cart-wrap .cart-pos-delete-btn {
        position: absolute;
        align-self: flex-end;
    }

    .cart-wrap input[type="number"] {
        padding: 5px;
        min-width: 50px;
    }

    .cart-wrap .number-input {
        gap: 10px;
        width: min-content;
        min-width: 0 !important;
    }

    .cart-wrap .container {
        align-items: center;
    }

    .cart-summary .container .wrapper.cart-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: default;
        align-items: flex-start;
        overflow-y: visible;
    }

    .cart-summary.summary .container .wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: default;
        align-items: flex-start;
        overflow-y: visible;
    }

    .cart-summary.summary .position-product .item-list-header .price-gross {
        text-align: center;
    }

    .cart-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .additional-details {
        margin-top: 0;
        width: 100%;
    }

    .registration-wrap.cart-registration .options {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .registration-wrap input {
        padding: 10px;
        margin-right: 20px;
    }

    .registration-wrap .login-form,
    .registration-wrap .no-login,
    .registration-wrap .register-form {
        width: 95%;
        max-width: 800px;
    }

    .delivery-details,
    .payments {
        grid-template-columns: 100%;
        align-self: normal;
    }

    .order-details {
        display: flex;
        flex-direction: column;
    }

    .cart-products span:has(.mobile-header) {
        display: flex;
        flex-direction: row !important;
        gap: 10px;
    }

    .cart-products .mobile-header {
        display: block;
        font-weight: 500;
    }

    .modal-address-list {
        max-height: 400px;
    }

    .order-summary .delivery-info {
        width: 100%;
        padding: 10px;
    }

    .order-summary .product-cost {
        display: flex;
        justify-content: space-between;
        padding-top: 10px;
    }

    .order-summary .product-quantity {
        display: flex;
        gap: 10px;
    }

    .order-summary .position-products .product-header {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    .order-summary .product-quantity-header {
        display: none;
    }

    .order-summary .product-quantity-mobile {
        display: block;
    }

    .order-summary .position-products .product-item {
        grid-template-columns: 1fr;
    }

    .order-summary .product-price,
    .order-summary .product-delivery,
    .order-summary .product-total {
        align-self: flex-start;
        text-align: left;
    }

    .order-summary .position-products .product-details {
        padding-left: 0;
    }

    .order-summary .order-recipient,
    .order-summary .order-number {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .order-summary .order-number div {
        justify-content: start;
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .thumbnails {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        padding-bottom: 5px;
    }

    .thumbnails img {
        width: 70px;
        height: 70px;
    }

    .main-image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .gallery-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .gallery-container:has(.thumbnails) {
        padding-left: 0;
    }

    .thumbnails {
        display: flex;
        flex-direction: row;
        gap: 5px;
        scrollbar-width: thin;
        position: relative;
    }

    .product-wrap .top {
        gap: 20px;
    }

    .product-wrap .left-column,
    .product-wrap .right-column {
        width: 100%;
    }

    .alternative .content.left-column,
    .alternative .right-column,
    .alternative .top,
    .alternative .product-form {
        display: contents;
    }

    .alternative .top h1.title {
        order: 1;
    }
    .alternative .top h2.subtitle {
        order: 2;
    }

    .alternative .gallery-container {
        order: 3;
    }

    .alternative .product-price {
        order: 4;
        width: 100%;
        margin-bottom: 20px;
    }

    .alternative #section-description {
        order: 5;
    }

    .alternative .spec-table {
        order: 6;
        width: 100%;
        margin-bottom: 20px;
    }

    .alternative .articleForm {
        order: 7;
    }

    .alternative .product-section {
        padding: 0;
    }

    .alternative hr {
        display: none;
    }

    .alternative .product-form {
        position: static;
    }

    .box0400 .product-price {
        font-size: 20px;
    }

    .box0400 .product-price .lowest-price-info {
        font-size: 9px;
        margin-top: 2px;
    }
}

@media (max-width: 768px) {
    .shop-wrapper {
        grid-template-columns: auto;
    }

    .shop-wrapper .products {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .product-wrap .top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .box0400 {
        max-width: 100%;
        min-width: 150px;
        min-height: auto;
    }

    .box0400 .product-name {
        font-size: 16px;
    }

    .box0400 .product-price {
        min-height: auto;
    }

    .thumbnails img {
        width: 60px;
        height: 60px;
    }

    .main-image {
        width: 100%;
    }

    .cart-wrap .cart-content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cart-wrap .number-input {
        gap: 50px;
    }

    .cart-wrap .number-input span {
        width: 100%;
        text-align: start;
    }

    .cart-wrap .item-name {
        width: 100%;
        max-width: none;
    }

    .cart-sidebar {
        display: flex;
        flex-direction: column;
    }

    .additional-details {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .cart-wrap .cart-products {
        position: relative;
        flex-wrap: wrap;
        align-items: start;
    }

    .cart-summary.summary .cart-products {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .cart-summary.summary .cart-products .mobile-header {
        display: block;
        display: flex;
        justify-content: space-between;
    }

    .cart-summary.summary .position-product .item-list-header {
        display: none;
    }

    .cart-summary.summary .position-product .product-item {
        display: flex;
        justify-content: space-between;
    }

    .cart-summary .wrapper,
    .order-summary .wrapper {
        flex-direction: column;
    }

    .cart-summary .position-product,
    .cart-summary .delivery-item {
        padding: 10px;
    }

    .category-page .search-wrapper {
        width: 100%;
    }

    .cart-summary .product-item,
    .order-summary .product-item {
        padding: 5px 10px;
        display: grid;
        grid-template-columns: 100px auto auto;
    }

    .cart-summary .product-item:nth-of-type(odd) {
        background-color: var(--color-gray);
    }

    .cart-summary .product-item {
        gap: 10px;
    }

    .cart-summary .item-img {
        min-width: 100px;
        width: 100px;
        object-fit: cover;
        grid-column-start: 1;
        grid-column-end: 1;
    }

    .cart-summary .item-img img {
        width: 100%;
    }

    .cart-summary .item-summary {
        display: flex;
        flex-direction: column;
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .cart-summary .item-summary span a {
        font-weight: 600;
        font-size: var(--font-size-sm);
    }

    .cart-summary .item-summary .item-additions {
        font-size: var(--font-size-xs);
        padding-left: 10px;
    }

    .cart-summary .amount-price {
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .cart-summary .amount-price .final-item-price {
        text-align: end;
        min-width: 100px;
        max-width: 200px;
    }

    .delivery-details .delivery-list,
    .payments-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .cart-address-form {
        width: 100%;
    }

    .cart-address-form .row {
        flex-direction: column;
    }

    .cart-address-form .row.address {
        grid-template-columns: 1fr;
    }

    .cart-address-form .cart-form-cell.building-number .formError {
        position: initial;
        transform: none;
    }

    .modal {
        padding: 20px;
    }

    .modal:has(.add-product-modal) {
        width: 80%;
    }

    .modal:has(.modal-dialog) {
        width: 80%;
    }

    .modal .modal-address {
        padding-right: 20px;
    }

    .modal .modal-create-address input {
        padding: 10px 0px;
    }

    .products-wrap .search-wrapper {
        position: relative;
    }

    .shop-live-search-wrap {
        transition: all .4s ease-in-out;
    }

    .shop-live-search-wrap input {
        min-width: 20px;
    }

    .products-wrap .search-wrapper .shop-live-search-wrap.mobile {
        width: 100%;
    }

    .products-wrap .search-wrapper select.mobile {
        display: none;
    }

    .company {
        margin-bottom: 10px;
    }

    .collapsible {
        display: none;
        margin-top: 30px;
    }

    .collapsible.open {
        display: flex;
    }

    .toggle-filters {
        display: flex;
        width: 100%;
        border: none;
        text-align: left;
        font-weight: bold;
        background: transparent;
        font-size: var(--font-size-sm);
        padding-right: 5px;
    }

    .product-wrap .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0px 0px 30px 0px;
    }

    .product-wrap .product-form {
        top: 0;
        padding-top: 1rem;
        position: static;
    }

    .product-wrap.alternative .container {
        grid-template-columns: 1fr;
        display: grid;
    }

    .product-wrap.alternative .price {
        font-size: 16px;
    }

    .product-wrap.alternative .price span {
        min-width: 150px;
        align-self: center;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {

    .header .user-nav p a {
        letter-spacing: 0;
    }

    .header .user-nav p i {
        font-size: var(--font-size-xxs);
    }

    .header .search {
        display: none;
    }

    .registration-wrap .title {
        font-size: 20px;
    }

    .registration-wrap .recovery {
        display: flex;
        justify-content: space-around;
    }

    .registration-wrap .container {
        min-height: 480px;
        padding: 0 40px;
    }

    .registration-wrap.cart-registration .container {
        padding: 0;
    }

    .registration-wrap .container form {
        width: 100%;
    }

    .registration-wrap .container form .form-item {
        width: 100%;
    }

    .registration-wrap .container a {
        text-align: center;
        font-size: 16px;
    }

    .registration-wrap.cart-registration .login-input {
        width: 100%;
    }

    .cart-wrap .container {
        max-width: 576px;
    }

    .cart-wrap .cart-delete-btn {
        width: 100%;
    }

    .cart-wrap .item-name {
        max-width: 75%;
    }

    .cart-wrap .item-values {
        display: flex;
        flex-direction: column;
    }

    .cart-wrap .final-item-price {
        align-self: start;
    }

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

    .cart-summary .btn-wrap {
        flex-direction: column-reverse;
    }

    .cart-summary.summary .cart-products .number-input {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cart-summary.summary .position-product .cart-products .final-item-price {
        align-self: start;
    }

    .additional-details {
        flex-direction: column !important;
        align-items: center;
        gap: 50px;
    }

    .cart-wrap .delivery-options,
    .additional-details .summary-info {
        width: 100%;
    }

    .cart-wrap .delivery-options label {
        justify-content: flex-start;
    }

    .category-page .category-descr-wrap img {
        width: 100%;
    }

    .product-wrap .articleForm h4 {
        padding: 0;
    }
}

@media (max-width: 375px) {
    .registration-wrap .title {
        font-size: 16px;
    }

    .category-page .search-wrapper {
        gap: 10px;
        flex-direction: column;
    }

    .category-page .search-wrapper input,
    .category-page .search-wrapper select {
        width: 100%;
    }

    .cart-wrap .number-input {
        gap: 20px;
    }

    .cart-wrap .cart-pos-delete-btn {
        padding: 2px 5px;
    }

    .cart-wrap span:has(.mobile-header) {
        display: flex;
        font-size: var(--font-size-xs);
    }

    .cart-wrap .item-name {
        font-size: var(--font-size-xs);
        max-width: 150px;
    }

    .cart-products .item-name {
        font-size: var(--font-size-xs);
        max-width: 150px;
    }

    .cart-products span:has(.mobile-header) {
        display: flex;
        font-size: var(--font-size-xs);
    }
}

/* Menu Layout */

.menu-layout {
    min-height: 100vh;
    background-color: var(--color-white);
}

/* Products Section */
.menu-layout__products {
    padding: 0;
}

.menu-category {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.menu-category--level-2 {
    margin-bottom: 30px;
    padding-left: 20px;
}

.menu-category--level-3 {
    margin-bottom: 20px;
    padding-left: 20px;
}

.menu-category__header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.menu-category--level-2 .menu-category__header {
    border-bottom-width: 1px;
    border-bottom-color: var(--color-gray);
}

.menu-category--level-3 .menu-category__header {
    border-bottom: none;
    padding-bottom: 5px;
}

.menu-category__title {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
}

.menu-category--level-2 .menu-category__title {
    font-size: 20px;
}

.menu-category--level-3 .menu-category__title {
    font-size: 16px;
}

.menu-category__description {
    margin: 0;
    color: #666;
    font-size: var(--font-size-sm);
}

.menu-category__products {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Product Card */
.menu-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-gray);
}

.menu-product__image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.menu-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.menu-product__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.menu-product__info {
    flex: 1;
    min-width: 0;
}

.menu-product__name {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 600;
}

.menu-product__name a {
    color: var(--color-black);
    text-decoration: none;
}

.menu-product__name a:hover {
    color: var(--color-primary);
}

.menu-product__description {
    margin: 5px 0 0 0;
    font-size: var(--font-size-xs);
    color: var(--color-black);
    line-height: 1.4;
    opacity: 0.7;
}

.menu-product__price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.menu-product__price {
    font-weight: 600;
    white-space: nowrap;
}

.menu-product__price--current,
.menu-product__price--promo {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-black);
}

.menu-product__price--promo {
    margin-right: 10px;
    color: #dc3545;
}

.menu-product__price--old {
    font-size: var(--font-size-sm);
    color: #999;
    text-decoration: line-through;
}

.menu-product__actions {
    display: flex;
    align-items: center;
}

.menu-product__out-of-stock {
    padding: 8px 15px;
    background-color: var(--color-gray);
    border-radius: 5px;
    font-size: var(--font-size-xs);
    color: #666;
}

.menu-product__add-form {
    margin: 0;
}

.menu-product__add-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.menu-product__add-btn span {
    display: none;
}

.menu-product__add-btn:hover:not(:disabled) {
    background-color: #f2f2f2;
}

.menu-product__add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.menu-product__closed-msg {
    display: none;
}

.fa-cart-shopping{
    pointer-events: none;
}

/* Responsive Menu Layout */
@media (max-width: 576px) {
    .menu-category__title {
        font-size: 20px;
    }

    .menu-category--level-2 .menu-category__title {
        font-size: 18px;
    }

    .menu-category--level-3 .menu-category__title {
        font-size: 16px;
    }

    .menu-product {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .menu-product__info {
        width: 100%;
        margin-bottom: 10px;
    }

    .menu-product__price-row {
        width: 100%;
        justify-content: space-between;
    }

    .menu-product__closed-msg {
        display: block;
        width: 100%;
        padding: 8px 0 0;
        font-size: var(--font-size-xs);
        color: #dc3545;
        text-align: left;
    }

    .popper-tip {
        display: none !important;
    }
}

.shop-custom-field{
    margin-top: 20px;
}