

/* Start:/local/templates/lab45/assets/css/style.css?176857434128376*/
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: black;
    transition: 0.5s;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Helvetica';
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1760px;
    width: 95%;
    margin: 0 auto;
}

button {
    cursor: pointer;
}

input:focus {
    outline: none;
}

.btn1 {
    padding: 12px 24px;
    border: none;
    background: none;
    font-size: 14px;
    max-width: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(217, 217, 217);
}

.btn1 img {
    margin-left: 10px;
}

.btn1:hover {
    color: white;
    background-color: black;
}

.btn1:hover img {
    filter: invert(100%);
}

.btn2 {
    padding: 12px 24px;
    background-color: black;
    font-size: 14px;
    max-width: 300px;
    color: #ffffff;
    display: flex;
    align-items: center;
    border: none;
}

.btn2 img {
    margin-left: 10px;
    filter: invert(100%);
}

.btn2:hover {
    background-color: rgb(255, 255, 255);
    color: black;
}

h1, h2, h3 {
    font-weight: bold;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 14px;
}

h3 {
    color: white;
    font-family: 'Helvetica Neue', Helvetica, 'Inter', Arial, sans-serif;
}

span {
    font-size: 14px;
    font-family: 'Helvetica Neue', Helvetica, 'Inter', Arial, sans-serif;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumbs span {
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.breadcrumbs a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: black;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/local/templates/lab45/assets/css/../fonts/helvetica_regular.otf');
}

@font-face {
    font-family: 'HelveticaLight';
    src: url('/local/templates/lab45/assets/css/../fonts/helvetica_light.otf');
}

@font-face {
    font-family: 'HelveticaBold';
    src: url('/local/templates/lab45/assets/css/../fonts/helvetica_bold.otf');
}

/* header */

header {
    padding: 10px 0px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-links a {
    font-size: 14px;
    margin: 0px 20px;
}

.header-buttons button {
    background: none;
    border: none;
    margin: 0px 10px;
}

header a:hover {
    color: rgb(86, 86, 86);
}

/* header */

/* banner */

.banner {
    width: 100%;
    aspect-ratio: 1920 / 700;
    background-image: url(/local/templates/lab45/assets/css/../images/banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* banner */

/* Offer */

.offer {
    padding: 80px 0px;
}

.offer-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 40px;
}

.offer-content {
    display: flex;
}

.offer-txt {
    width: 28%;
    padding-right: 16px;
}

.offer-cards {
    width: 72%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-card {
    height: auto;
    width: calc(33.333% - 14px);
    position: relative;
    aspect-ratio: 390 / 540;
    flex-shrink: 0;
}

.offer-card:hover {
    box-shadow: rgba(0, 0, 0, 0.533) 0px 1px 8px;
}

.offer-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.offer-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-params {
    position: relative;
    z-index: 2;
    height: 100%;
}

.offer-card-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.offer-card-name h3 {
    margin-bottom: 8px;
    font-size: 14px;
}

.offer-card-name span {
    color: white;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Helvetica Neue', Helvetica, 'Inter', Arial, sans-serif;
}

.offer-card-button {
    position: absolute;
    z-index: 1;
    right: 25px;
    top: 25px;
}

/* favorite */

.favorite-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease;
    color: black;
    z-index: 1;
}

.favorite-button svg {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 2;
    display: block;
}

.favorite-button.active {
    color: black;
}

.favorite-button.active svg {
    animation: heartBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.favorite-button.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: transparent;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    box-shadow:
            0 -18px 0 black,
            14px -14px 0 black,
            18px 0 0 black,
            14px 14px 0 black,
            0 18px 0 black,
            -14px 14px 0 black,
            -18px 0 0 black,
            -14px -14px 0 black;
    animation: particlesExplosion 0.6s ease-out forwards;
}

@keyframes particlesExplosion {
    0% {
        opacity: 0;
        box-shadow:
                0 0 0 black, 0 0 0 black, 0 0 0 black, 0 0 0 black,
                0 0 0 black, 0 0 0 black, 0 0 0 black, 0 0 0 black;
    }
    40% {
        opacity: 1;
        box-shadow:
                0 -22px 0 black, 16px -16px 0 black, 22px 0 0 black, 16px 16px 0 black,
                0 22px 0 black, -16px 16px 0 black, -22px 0 0 black, -16px -16px 0 black;
    }
    100% {
        opacity: 0;
        box-shadow:
                0 -35px 0 black, 25px -25px 0 black, 35px 0 0 black, 25px 25px 0 black,
                0 35px 0 black, -25px 25px 0 black, -35px 0 0 black, -25px -25px 0 black;
    }
}

/* favorite */

/* Offer */

/* collections */

.collections {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.collections-men {
    width: 49.8%;
    background-image: url(/local/templates/lab45/assets/css/../images/man.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 730px;
    transition: 0.5s;
}

.collections-men h1 {
    color: white;
    text-align: center;
    margin-top: 55%;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.116);
    position: relative;
    z-index: 2;
}

.collections-men:hover {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.164);
}

.collections-women {
    width: 49.8%;
    background-image: url(/local/templates/lab45/assets/css/../images/womana.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 730px;
}

.collections-women h1 {
    color: white;
    text-align: center;
    margin-top: 55%;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.116);
    position: relative;
    z-index: 2;
}

.collections-women:hover {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.164);
}

/* collections */

/* more */

.more {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 80px;
}

.more-left {
    width: 49.5%;
}

.more-right {
    width: 49.5%;
    display: flex;
    flex-direction: column;
}

.more-right span {
    margin-bottom: 40px;
}

/* more */

/* brends */

.brends {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.brend {
    background-image: url(/local/templates/lab45/assets/css/../images/brand.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 49.8%;
    height: 820px;
    margin-top: 0.4%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brend h1 {
    color: white;
    margin-bottom: 8px;
}

.brend button {
    margin: 0 auto;
}

.brend .btn2 {
    min-width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.brends-title {
    display: flex;
    justify-content: space-between;
    margin-top: 85px;
    margin-bottom: 40px;
}

/* brends */

/* recomendations */

.recomend-head {
    margin-top: 80px;
    margin-bottom: 40px;
}

.recomend-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.recomend-card {
    height: auto;
    width: calc(25% - 15px);
    position: relative;
    aspect-ratio: 390 / 540;
    flex-shrink: 0;
}

.recomend-card:hover {
    box-shadow: rgba(0, 0, 0, 0.533) 0px 1px 8px;
}

.recomend-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recomend-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recomend-params {
    position: relative;
    z-index: 2;
    height: 100%;
}

.recomend-card-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.recomend-card-name h3 {
    margin-bottom: 8px;
    font-size: 14px;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.533);
}

.recomend-card-name span {
    color: white;
    font-size: 14px;
    font-weight: 300;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.533);
}

.recomend-card-button {
    position: absolute;
    top: 25px;
    right: 25px;
}

/* recomendations */

/* about */

.about {
    display: flex;
    margin-top: 80px;
}

.about-img {
    width: 50%;
    background-color: rgba(217, 217, 217, 1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    width: 50%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    background-color: rgba(217, 217, 217, 1);
    justify-content: end;
}

.about-content span {
    margin-top: 20px;
    margin-bottom: 40px;
}

.about-content .btn1 {
    max-width: 200px;
}

/* about */

/* footer */

footer {
    background-color: rgba(217, 217, 217, 1);
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 80px 0px;
}

.footer-column a {
    font-size: 12px;
}

.footer-column-sec {
    margin-top: 32px;
}

.footer-links {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-input {
    width: 35%;
}

.footer-input a span {
    font-size: 12px;
}

.footer-input a:hover span {
    color: #483BF5;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h2 {
    margin-bottom: 15px;
}

.footer-column a {
    margin: 8px 0;
}

.footer-media {
    margin-top: 40px;
}

.footer-media-buttons {
    display: flex;
}

.footer-media-buttons button {
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.footer-inp {
    width: 100%;
    border: none;
    padding: 20px;
}

.footer-input-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
}

.footer-input-checkbox span {
    font-size: 12px;
    margin-left: 10px;
}

footer a:hover {
    color: rgb(86, 86, 86);
}

.footer_divider {
    height: 1px;
    width: 100%;
    background-color: black;
    margin-bottom: 20px;
}

.footer_footer {
    padding-bottom: 50px;
    font-weight: 600;
}

.footer_footer span {
    color: rgba(0, 0, 0, 0.49);
    font-size: 12px;
}

.footer_footer a {
    color: rgba(0, 0, 0, 0.49);
    margin-left: 20px;
    text-decoration: underline;
    font-size: 12px;
}

/* footer */

/* search */

.header-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.header-buttons {
    display: flex;
    align-items: flex-start;
    z-index: 10;
}

.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 12px;
    color: black;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.search-wrapper.active .search-input {
    width: 200px;
    padding: 6px 10px;
    opacity: 1;
    visibility: visible;
    background-color: white;
    border-radius: 6px;
    margin-right: 8px;
    border: 1px solid black;
}

.search-toggle-btn {
    position: relative;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
    color: black;
}

.search-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.search-wrapper.active .search-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.search-wrapper.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.header-buttons button img {
    display: block;
    width: 24px;
    height: auto;
}

/* search */

header {
    position: relative;
    z-index: 1001;
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
    margin-top: 140px;
}

.page-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    min-height: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1002;
    border-top: 1px solid #e0e0e0;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-content {
    display: flex;
}

.mega-menu-class {
    display: flex;
    justify-content: space-between;
}

.mega-menu-column-first {
    display: flex;
    flex-direction: column;
}

.mega-menu-column-first a {
    margin-bottom: 12px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-column a {
    margin-bottom: 12px;
}

.mega-menu-column .a-big {
    margin-bottom: 32px;
}

.mega-menu-columnsec {
    display: flex;
    gap: 8px;
}

.mega-menu-columnsec a {
    margin: 4px 0px;
}

.mega-menu-columnsec img {
    height: 100%;
}

.mega-menu h3 {
    color: black;
}

.a-big {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* about */

.separator {
    height: 1px;
    background-color: rgba(196, 196, 196, 1);
    margin: 40px 0px;
    width: 100%;
}

.about-txt {
    font-size: 14px;
}

.about-txt span {
    font-size: 14px;
    font-weight: bold;
}

/* --- FIX DESKTOP LAYOUT --- */

.mobile-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-submenu .a-big {
    margin-top: 32px;
}

.mobile-submenu a {
    margin-bottom: 8px;
}

.burger-btn {
    display: none;
}

.mobile-only-links {
    display: none;
}

.accordion-arrow {
    display: none;
}

.accordion-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2px 0;
    cursor: pointer;
}

/* --- ADAPTIVE MEDIA QUERIES --- */

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    .header-links a {
        margin: 0 10px;
        font-size: 14px;
    }
    .footer-links {
        width: 60%;
    }
    .footer-input {
        width: 38%;
    }
}

@media (max-width: 992px) {

    .brends{
        flex-direction: column;

        .brend{
            width: 100%;
            max-height: 480px;
        }
    }

    .more{
        flex-direction: column;

        .more-right span{
            margin: 20px 0;
        }

        .more-right{
            width: 100%;

        }
    }

    .collections{
        flex-direction: column;
        .collections-men, .collections-women{
            width: 100%;
            margin-bottom: 24px;
        }

    }

    .header-links {
        display: none;
    }
    .header-links.active {
        display: flex;
    }
    .a-big {
        margin-bottom: 12px !important;
    }
    .burger-btn {
        display: block;
        background: none;
        border: none;
        padding: 0;
        margin-left: 15px;
        cursor: pointer;
    }
    .mega-menu {
        top: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background-color: white;
    }
    .mega-menu-class {
        flex-direction: column;
        padding: 20px 0;
    }
    .mega-menu-columnsec {
        display: none;
    }
    .mobile-only-links {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .accordion-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        cursor: pointer;
    }
    .accordion-arrow {
        display: block;
        width: 10px;
        height: 10px;
        border-right: 2px solid black;
        border-bottom: 2px solid black;
        transform: rotate(45deg);
        transition: 0.3s;
    }
    .accordion-header-mobile.active .accordion-arrow {
        transform: rotate(225deg);
    }
    .mobile-submenu {
        display: none;
        padding-left: 15px;
        margin-bottom: 15px;
    }
    .mobile-submenu.active {
        display: flex;
    }
    .footer {
        flex-direction: column;
    }
    .footer-links {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .offer-content {
        flex-direction: column;
    }
    .offer-txt {
        width: 100%;
        margin-bottom: 30px;
    }
    .offer-cards {
        width: 100%;
    }
    .offer-card, .recomend-card {
        width: calc(50% - 10px);
        aspect-ratio: 1 / 1;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .collections-men,
    .collections-women {
        width: 100%;
        height: auto !important;
        aspect-ratio: 1 / 1;
        margin-bottom: 24px;
    }
    .header-buttons .search-wrapper {
        display: none;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .footer-column {
        width: 100%;
        align-items: flex-start;
    }
    .offer-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .offer-head .btn1 {
        margin-top: 20px;
    }
    .collections {
        flex-direction: column;
    }
    .collections-men, .collections-women {
        height: auto !important;
        aspect-ratio: 6 / 5;
        background-size: cover;
    }
    .brends {
        flex-direction: column;
    }
    .brend {
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
    }
    .about {
        flex-direction: column;
    }
    .about-img, .about-content {
        width: 100%;
    }
    .about-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 14px;
    }
    .btn1, .btn2 {
        font-size: 14px;
        padding: 10px 20px;
    }
    .header-buttons button {
        margin: 0 5px;
    }
    .header-buttons button img {
        width: 20px;
    }
    .offer-cards, .recomend-cards {
        gap: 10px;
    }
    .offer-card, .recomend-card {
        width: calc(50% - 5px);
    }
}

.search-modal-left {
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%) !important;
    transition: transform 0.4s ease-in-out;
}

.modal-overlay.active .search-modal-left {
    transform: translateX(0) !important;
}

.search-field-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.search-modal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
}

.search-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.s-tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #000;
    border-radius: 40px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.s-tag:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .search-modal-left {
        max-width: 100%;
    }
}

.search-modal-left {
    max-height: none !important;
    max-width: 500px !important;
}

.cart-modal-right {
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%) !important;
    max-width: 500px !important;
    width: 100%;
    height: 100% !important;
    max-height: none !important;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .cart-modal-right {
    transform: translateX(0) !important;
}

.cart-modal-products {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.cart-modal-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
}

.cart-modal-image {
    width: 90px;
    flex-shrink: 0;
}

.cart-modal-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-modal-brand {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.cart-modal-name, .cart-modal-variant {
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
}

.cart-modal-price {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.cart-modal-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.modal-count {
    border: none !important;
    max-width: none !important;
    height: auto !important;
    gap: 10px;
}

.modal-count .btn-prod {
    font-size: 16px;
    padding: 0;
    width: 20px;
}

.cart-modal-delete {
    background: none;
    border: none;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.cart-modal-footer {
    padding: 30px 40px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.cart-modal-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.cart-modal-order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.cart-modal-order-btn:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 500px) {
    .cart-modal-right {
        max-width: 100% !important;
    }
}

.footer-input-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-input-btn input {
    width: 50%;
    padding: 16px 24px;
    font-size: 12px;
}

.footer-input-btn button {
    width: 50%;
    height: 100%;
    padding: 16px 24px;
    font-size: 12px;
    display: flex;
    justify-content: center;
}

/*footer adaptive*/
@media (max-width: 1200px) {
    .footer-links {
        width: 58%;
    }
    .footer-input {
        width: 38%;
    }
    .footer-links a {
        font-size: 13px;
    }
}


@media (max-width: 992px) {
    .footer {
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        margin-bottom: 60px;
        justify-content: space-between;
    }

    .footer-input {
        width: 100%;
        max-width: 600px;
    }

    .footer-column {
        margin-right: 20px;
    }

    .footer-column:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        width: 45%;
        margin-right: 0;
    }

    .footer-column:nth-child(3) {
        width: 100%;
    }

    .footer-input {
        max-width: 100%;
    }

    .footer_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer_footer a {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0;
    }

    .footer-column {
        width: 100%;
    }

    .footer-input-btn {
        flex-direction: column;
        width: 100%;
    }

    .footer-input-btn input {
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .footer-input-btn button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .footer-input h2 {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-input-checkbox {
        align-items: center;
    }

    .footer-input-checkbox input {
        margin-top: 3px;
        flex-shrink: 0;
    }
}

/*footer adaptive*/

/* Контейнер для поля поиска должен быть relative, чтобы список позиционировался относительно него */
.search-field-container {
    position: relative;
}

/* Сам выпадающий список */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    display: none; /* Скрыт по умолчанию */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-results-dropdown.active {
    display: block;
}

/* Элемент товара в поиске */
.search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s;
}

.search-item:hover {
    background-color: #f9f9f9;
}

.search-item img {
    width: 50px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}

.search-item-info {
    display: flex;
    flex-direction: column;
}

.search-item-brand {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
}

.search-item-name {
    font-size: 13px;
    color: #333;
    margin: 2px 0;
}

.search-item-price {
    font-size: 12px;
    color: #666;
}

/* Сообщение "ничего не найдено" */
.search-no-results {
    padding: 15px;
    text-align: center;
    font-size: 13px;
    color: #999;
}


/* End */


/* Start:/local/templates/lab45/assets/css/catalog.css?176798520811991*/
footer {
    margin-top: 80px;
}

.catalog-title {
    display: flex;
    align-items: end;
}

.catalog-title span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin-left: 16px;
}

.catalog-head {
    margin: 60px 0;
}

.catalog-filters {
    display: flex;
    justify-content: space-between;
}

.catalog-filters button {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    background: none;
    border: none;
}

.catalog-filters button img {
    width: 19px;
    height: 19px;
    margin-right: 10px;
}

.catalog-cards {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.catalog-card .offer-card {
    width: 100%;
}

.catalog-card-big {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-top: 40px;
}

.catalog-card-big .offer-card {
    width: 100%;
    max-height: 540px;
}

.catalog-card-big .offer-card {
    width: 100%;
    max-height: 540px;
}
/*.offer-picture img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain !important;*/
/*    object-position: center;*/
/*}*/

.catalog-card-info {
    display: flex;
    flex-direction: column;
}

.catalog-card-info h3 {
    margin-top: 10px;
    color: black;
    margin-bottom: 4px;
    font-size: 14px;
}

.catalog-card-info span {
    margin-bottom: 4px;
    font-size: 14px;
    font-family: 'Helvetica Neue', Helvetica, 'Inter', Arial, sans-serif;
}

.catalog-next {
    width: 100%;
    display: flex;
    justify-content: center;
}

.catbtn {
    padding: 12px 20px;
    font-size: 14px;
    border: 1px solid black;
    font-weight: 400;
    margin-top: 60px;
    border: none;
    background-color: rgb(217, 217, 217);
}

.catbtn:hover {
    color: white;
    background-color: black;
}

/* filter modal */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 800px;
    max-height: 900px;
    background-color: white;
    z-index: 101;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.modal-overlay.active .modal {
    transform: translateX(0);
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 14px;
}

.modal-content {
    padding: 10px 40px 40px 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-content h3 {
    font-size: 12px;
}

.modal-close-btn {
    position: static;
    font-size: 24px;
    padding: 0;
    line-height: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.modal-close-btn:hover {
    color: #000;
}

body.modal-open {
    overflow: hidden;
}

.filter-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    color: black;
    text-transform: uppercase;
    margin-top: 30px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: black;
    background-color: white;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.size-btn:hover:not(.active) {
    border-color: black;
}

.size-btn.active {
    border-color: black;
}

.accordion .filter-group-title {
    margin: 0;
    color: black;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.accordion-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(225deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-panel .filter-options {
    padding-top: 20px;
}

.scrollable {
    max-height: 290px;
    overflow-y: auto;
    padding-right: 10px;
}

.color-swatch {
    width: 50px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: border-color 0.2s ease;
}

.color-swatch:hover {
    border-color: #555;
}

.color-swatch.active {
    border: 2px solid black;
}

.color-swatch .checkmark {
    width: 20px;
    height: 20px;
    fill: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.color-swatch.active .checkmark {
    opacity: 1;
}

.color-swatch[data-checkmark-color="black"] .checkmark {
    fill: black;
}

#price-slider {
    height: 3px;
    background: #e9e9e9;
    border: none;
    box-shadow: none;
    margin: 40px 10px;
}

#price-slider .noUi-connect {
    background: #000000;
}

#price-slider .noUi-handle {
    height: 30px;
    width: 30px;
    top: -14px;
    right: -13px;
    border-radius: 100px;
    background: #000000;
    border: 2px solid #000000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

#price-slider .noUi-handle:focus,
#price-slider .noUi-handle:active {
    outline: none;
    cursor: grabbing;
}

#price-slider .noUi-handle::before,
#price-slider .noUi-handle::after {
    display: none;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.price-input-wrapper {
    width: 48%;
}

.price-input-wrapper label {
    font-size: 12px;
    color: #777;
}

.price-input-wrapper input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    outline: none;
}

.filter-buttons {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.fbtn1 {
    background-color: white;
    border: 1px solid black;
    color: #000;
    padding: 13px 20px;
    font-size: 14px;
    width: 39%;
}

.fbtn1:hover {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
}

.fbtn2 {
    border: none;
    background-color: rgba(103, 103, 103, 1);
    color: white;
    padding: 13px 20px;
    font-size: 14px;
    width: 60%;
}

.fbtn2:hover {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
}

/* select */

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 280px;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 550;
    color: black;
    padding: 12px 20px;
    border: 1px solid white;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.custom-select .arrow {
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select__trigger {
    border: 1px solid black;
    z-index: 10;
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid black;
    border-top: 0;
    background: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: 9;
    overflow: hidden;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    color: black;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-option:hover {
    background-color: black;
    color: white;
}

.custom-option.selected {
    font-weight: 600;
}

/* --- АДАПТИВ КАТАЛОГА --- */

/* 1. От 1760px до 1200px: Карточки плавно сужаются, оставаясь 4 в ряд */
@media (max-width: 1760px) {
    .catalog-card {
        flex: 0 1 calc(25% - 15px);
    }
}

/* 2. От 1200px до 800px (Фото 2): Компактный десктоп */
@media (max-width: 1200px) {
    .catalog-head {
        margin: 40px 0;
    }
}

/* 3. От 800px до 480px (Фото 3): 2 карточки в ряд */
@media (max-width: 800px) {
    .catalog-title h1 {
        font-size: 20px;
    }

    .catalog-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(55% - 10px);
        margin-top: 30px;
    }

    .catalog-card-big {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .catalog-cards {
        gap: 20px
    }

    .catalog-filters button {
        font-size: 12px;
    }

    .custom-select-wrapper {
        width: 200px;
    }
}

/* 4. Меньше 480px (Фото 4 и 5): Мобильный вид */
@media (max-width: 480px) {
    .catalog-head {
        margin: 20px 0;
    }

    .catalog-title h1 {
        font-size: 16px;
    }

    .catalog-title span {
        font-size: 12px;
        margin-left: 8px;
    }

    .catalog-filters {
        padding: 12px 0;
        border-top: 1px solid #EAEAEA;
        border-bottom: 1px solid #EAEAEA;
        align-items: center;
    }

    .catalog-filters button {
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .catalog-filters button img {
        width: 14px;
        height: 14px;
    }

    .custom-select-wrapper {
        width: 155px;
    }

    .custom-select__trigger {
        padding: 0;
        border: none;
        background: none;
        justify-content: flex-end;
    }

    .custom-select__trigger span {
        font-size: 10px;
    }

    .catalog-cards {
        gap: 0;
        justify-content: space-between;
    }

    .catalog-card {
        flex: 0 1 calc(50% - 5px);
        margin-top: 20px;
    }

    .catalog-card-info h3 {
        font-size: 11px;
        margin-top: 8px;
    }

    .catalog-card-info span {
        font-size: 11px;
    }

    .catbtn {
        width: 100%;
        margin-top: 40px;
    }
}


/* End */


/* Start:/local/templates/lab45/assets/css/cabinet.css?17684002936482*/
.cabinet {
    display: flex;
    padding: 60px 0px;
    position: relative;
}

h1 {
    font-size: 24px;
}

.cabinetbtn {
    background: none;
    padding: 12px 20px;
    font-size: 14px;
    max-width: 280px;
    background-color: rgb(217, 217, 217);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cabinetbtn:hover {
    background: black;
    color: white;
}

/* Меню (Сайдбар) */
.cabinet-menu {
    display: flex;
    flex-direction: column;
    margin-right: 48px;
    min-width: 300px;
}

.cabinet-menu a {
    margin-bottom: 20px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    width: fit-content;
    color: black;
}

.cabinet-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: black;
    transition: width 0.3s ease;
}

.cabinet-menu h1 {
    padding-bottom: 40px;
}

.cabinet-menu a:hover::after {
    width: 100%;
}

.cabinet-menu .active {
    text-decoration: none;
}

.cabinet-menu .active::after {
    width: 100%;
}

.catalog-title {
    display: flex;
    align-items: end;
    margin-bottom: 40px;
}

.catalog-title span {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 12px;
    font-size: 14px;
}

.catalog-title .catalog-bonus {
    color: black;
    font-size: 14px;
    margin-left: 16px;
}

.cabinet-content {
    width: 100%;
}

.cabinet-cards {
    width: 72%; /* Desktop width */
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Specific styling for cards inside cabinet to override defaults if needed */
.cabinet-cards .offer-card {
    height: auto;
    width: 20%; /* Desktop: 5 in a row roughly, but flexible */
    min-width: 180px; /* Prevent shrinking too much on desktop resize before breakpoint */
    position: relative;
    margin-bottom: 20px;
}

.catalog-card-mini {
    width: 19%;
    margin-top: 40px;
}

.catalog-card-mini .offer-card {
    width: 100%;
}

.cabinet-cards .offer-cards {
    width: 72%;
    display: flex;
    justify-content: space-between;
}

.cabinet-cancel span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.cabinet-cancel span a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: underline;
}

.cabinet-cancel span a:hover {
    color: black;
}

.cabinet-cancel {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.cabinet-cancel button {
    margin-top: 30px;
}

.separator {
    height: 1px;
    background-color: rgba(196, 196, 196, 1);
    margin: 40px 0px;
    width: 100%;
}

/* text */
.cabinet-text {
    font-size: 12px;
    font-weight: 400;
}

.cabinet-text li {
    margin-bottom: 24px;
}

.cabinet-text h3 {
    color: black;
    font-size: 14px;
    margin-bottom: 24px;
}

.cabinet-text span {
    font-size: 12px;
    display: block;
    margin-bottom: 24px;
    font-weight: 400;
}

/* --- MOBILE ELEMENTS (HIDDEN ON DESKTOP) --- */
.cabinet-mobile-head {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid #EAEAEA; /* Optional visual separation */
    padding-bottom: 20px;
}

.cabinet-mobile-filter-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    color: black;
}

.cabinet-mobile-filter-btn img {
    width: 18px;
    height: auto;
    margin-left: 8px;
}

.offer-card-name h3{
    text-shadow: 0 0 black;
}

.offer-card-name span{
    text-shadow: 0 0 black;
}


/* --- ADAPTIVE MEDIA QUERIES --- */

/* Tablet & Smaller Desktop (max-width: 992px covers the 800px requirement) */
@media (max-width: 992px) {
    .cabinet {
        flex-direction: column;
        padding-top: 20px;
    }

    /* Hide standard sidebar */
    .cabinet-menu {
        display: none;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        right: 0;
        width: 100%;
        max-width: 300px;
        background: white;
        z-index: 100;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-right: 0;
    }

    /* Class to toggle menu via JS */
    .cabinet-menu.open {
        display: flex;
    }

    /* Show Mobile Header */
    .cabinet-mobile-head {
        display: flex;
    }

    .cabinet-mobile-head h1 {
        font-size: 20px;
        margin: 0;
    }

    /* Content Widths */
    .cabinet-content {
        width: 100%;
    }

    .cabinet-cards {
        width: 100%;
        justify-content: space-between;
        gap: 0; /* Reset gap to control via margins/calc */
    }

    /* Cards: 2 per row */
    .cabinet-cards .offer-card {
        width: calc(50% - 8px); /* 2 in a row with spacing */
        min-width: 0;
        height: auto;
        aspect-ratio: 390 / 540;
    }

    /* Override any specific fixed heights from main css if they exist */
    .offer-picture img {
        height: 100%;
        object-fit: cover;
    }

    .catalog-title h1 {
        font-size: 18px;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .cabinet-mobile-head h1 {
        font-size: 16px;
        font-weight: bold;
    }

    .cabinet-mobile-filter-btn span {
        font-size: 12px;
    }

    .catalog-title {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .catalog-title h1 {
        font-size: 16px;
    }

    .catalog-title span {
        font-size: 12px;
        margin-left: 8px;
    }

    .catalog-title .catalog-bonus {
        font-size: 12px;
        margin-left: 8px;
    }

    /* Cards: 2 per row but tighter spacing */
    .cabinet-cards .offer-card {
        width: calc(50% - 5px);
        margin-bottom: 16px;
    }

    .offer-card-name h3 {
        font-size: 12px;
    }

    .offer-card-name span {
        font-size: 12px;
    }

    /* Button and Text adjustments */
    .cabinet-cancel span {
        font-size: 12px;
        line-height: 1.4;
    }

    .cabinetbtn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: 12px;
        padding: 14px 0;
    }
}
/* End */


/* Start:/local/templates/lab45/assets/css/card.css?17670012125993*/
.detail-sheet {
    margin-top: 60px;
}

.detail {
    display: flex;
    align-items: flex-start;
}

.detail-images {
    width: 56%;
    display: flex;
    flex-wrap: wrap;
}

.detail-images img {
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0.4%;
    object-fit: cover;
}

.detail-content {
    margin-left: 28px;
    width: 34%;
}

.detail-content h1 {
    margin-bottom: 10px;
}

.detail-content h3 {
    font-size: 24px;
    color: black;
    margin-top: 40px;
    margin-bottom: 30px;
}

.line {
    height: 1px;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 30px;
}

.detail-sizes span {
    text-decoration: underline;
    margin-bottom: 10px;
    /*text-align: center;*/
    font-size: 12px;
    font-weight: bold;
    display: block;
}

.detail-options {
    margin-top: 10px;
    margin-bottom: 10px;
}

.detail-left {
    color: red;
    font-size: 12px;
    font-weight: bold;
}

.detail-buttons {
    margin: 30px 0;
    display: flex;
    gap: 12px;
}

.dbtn {
    background-color: black;
    padding: 14px 0;
    font-size: 14px;
    flex-grow: 1;
    transition: 0.3s;
    border: none;
    color: white;
}

.dbtn:hover {
    background-color: rgb(76, 76, 76);
    color: white;
}

.fav-btn {
    width: 54px;
    min-width: 54px;
    border: 1px solid rgba(103, 103, 103, 1);
    border-radius: 8px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.fav-btn svg {
    stroke: black;
    transition: 0.3s;
    fill: none;
}

.fav-btn.active {
    background-color: black;
    border-color: black;
}

.fav-btn:hover svg,
.fav-btn.active svg {
    stroke: white;
    fill: white;
}

.product-accordions {
    margin-top: 40px;
    width: 100%;
}

.prod-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.prod-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.prod-accordion-header span:first-child {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: black;
}

.prod-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
}

.prod-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transform: translateY(-50%);
}

.prod-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: black;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.prod-accordion-header.active .prod-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.prod-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.prod-accordion-header.active + .prod-accordion-body {
    max-height: 500px;
}

.prod-accordion-body p {
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 1.4;
    color: black;
    margin: 0;
}

.detail-catalog-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.catalog-card-mini {
    width: 19.5%;
    margin-top: 40px;
}

.catalog-card-mini .offer-card {
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 540;
    position: relative;
}

.offer-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.offer-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-zag {
    display: flex;
    align-items: center;
    margin-top: 90px;
    justify-content: space-between;
}

.detail-zag span {
    font-size: 14px;
    font-weight: bold;
}

.detail-zag button {
    background: none;
    border: 1px solid black;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    margin-left: 20px;
}

.detail-zag button:hover {
    background: black;
    color: white;
}

.detail-vishlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1200px) {
    .detail-images {
        width: 50%;
    }
    .detail-content {
        width: 45%;
        margin-left: 30px;
    }
}

@media (max-width: 900px) {
    .detail {
        flex-direction: column;
    }

    .detail-sheet {
        margin-top: 20px;
    }

    .detail-images {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .detail-images::-webkit-scrollbar {
        display: none;
    }

    .detail-images img {
        width: 80%;
        min-width: 300px;
        aspect-ratio: 1 / 1;
        padding: 0;
        margin-right: 10px;
        scroll-snap-align: start;
    }

    .detail-content {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .detail-zag {
        margin-top: 50px;
    }

    .catalog-card-mini {
        width: 48%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .detail-images img {
        width: 90%;
        min-width: unset;
    }

    .detail-content h1 {
        font-size: 18px;
    }

    .detail-content h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dbtn {
        padding: 12px 0;
    }

    .detail-zag {
        margin-top: 40px;
    }

    .catalog-card-mini {
        width: 49%;
        margin-top: 15px;
    }
}
/* End */


/* Start:/local/templates/lab45/assets/css/basket.css?17664822087273*/
/* basket */

.basket{
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
}

.basket-left{
    width: 64%;
}

.basket-checkbox{
    display: flex;
    align-items: center;
}

.basket-head{
    display: flex;
    justify-content: space-between;
}

.b-checkbox{

    margin-left: 14px;

    input{
        cursor: pointer;
    }

    span{
        margin-left: 10px;
        font-size: 14px;
    }
}

.basket-buttons button{
    background: none;
    border: none;
    margin-left: 10px;
}

.basket-right{
    border: 1px solid black;
    border-radius: 12px;
    width: 545px;
    padding: 40px 30px;
    max-height: 640px;

    h3{
        color: black;
        margin-bottom: 16px;
    }
}

.basket-count{

    display: flex;
    justify-content: space-between;
    padding: 16px 0px;
    span{
        font-size: 14px;
    }
}

.basket-sale{

    display: flex;
    justify-content: space-between;
    span{
        font-size: 14px;
        color: red;
    }
}

.basket-right .separator{
    height: 1px;
    background-color: black;
    margin: 30px 0px;
}

.basket-calculator span{
    font-size: 14px;
}

.calculator{
    background-color: rgba(217, 217, 217, 1);
    height: 160px;
    margin-top: 16px;
}

.basket-result{
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    h3{
        font-size: 20px;
    }
}

.basketbtn{
    display: flex;
    justify-content: center;
    font-size: 14px;
    background: none;
    border: 1px solid black;
    border-radius: 8px;
    width: 100%;
    padding: 13px 0;
}

.basketbtn:hover{
    background-color: black;
    color: white;
}

.basket-info{
    display: flex;
    align-items: start;

    img{
        height: 280px;
    }
}

.basket-product:hover{
    background-color: rgb(244, 244, 244);
}

.checkbox-basket{
    margin-right: 10px;
}

.basket-info-txt{
    display: flex;
    flex-direction: column;
    height: 280px;
    width: 100%;
    justify-content: space-between;
    margin-left: 16px;

    h3{
        color: black;
    }
}

.basket-product{
    height: 280px;
    margin: 40px 0px;
    display: flex;
    justify-content: space-between;
}

.basket-info-margin h3{
    margin-bottom: 4px;
}

.product-count{
    height: 52px;
    display: flex;
    border: 1px solid black;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    max-width: 100px;

}

.btn-prod{
    width: 28px;
    height: 28px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-text{
    height: 28px;
    width: 28px;
    text-align: center;
    background: none;
    border: none;
}

.sizes{
    padding-bottom: 70%;
    span{
        margin-right: 20px;
    }
}

.separator-basket{
    height: 1px;
    background-color: black;
}

.basket-options{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;

    span{
        font-size: 20px;
        font-weight: bold;
    }

    a{
        width: 10px;
        height: 24px;
        text-align: end;
        background: none;
        border: none;
        font-size: 14px;
        cursor: pointer;
    }
}

.basket-promo{
    /*background-color: rgba(217, 217, 217, 1);*/
    padding-bottom: 28px;
    margin-top: 16px;
    display: flex;
    h3{
        color: black;
    }

    .btn2:hover{
        background-color: black;
        opacity: 0.8;
        color: white;
    }
}

.basket-promo-code{
    margin-top: 20px;
    display: flex;
    align-items: center;


    input{
        margin-right: 16px;
        max-width: 44%;
        margin-top: 0;
        margin-bottom: 0;
    }

    button{
        height: 56px;
        background: white;
        padding: 0 20px;
        font-size: 14px;
        border: none;
    }

    button:hover{
        background: black;
        color: white;
    }
}

/* basket */

.b-checkbox {
    cursor: pointer;
    user-select: none;
}

.basket-product {
    cursor: pointer;
}

.product-count, .basket-options a {
    cursor: default;
}

/* --- ИСПРАВЛЕННЫЕ СТИЛИ ДЛЯ МЕНЮ --- */

/* Контейнер для кнопки и меню */
.options-menu-container {
    position: relative;
    display: inline-block; /* Важно, чтобы контейнер не растягивался */
}

/* Стили кнопки троеточия */
.options-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Выравнивание троеточия */
    padding: 0;
    line-height: 1;
}

/* Выпадающее меню */
.options-dropdown {
    display: none; /* Скрыто по умолчанию */
    position: absolute;
    right: 0;
    top: 100%; /* Появляется сразу под кнопкой */
    background-color: white;

    /* Исправление ширины и переносов */
    min-width: 220px;       /* Минимальная ширина */
    width: max-content;     /* Растягивается под самый длинный текст */

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    z-index: 999;           /* Чтобы было поверх всего */
    padding: 8px 0;
    flex-direction: column;
    text-align: left;       /* Принудительно выравниваем текст влево */
}

/* Показываем меню, когда есть класс active */
.options-menu-container.active .options-dropdown {
    display: flex;
}

/* Элементы меню */
.dropdown-item {
    padding: 10px 16px;
    font-size: 12px !important; /* Размер шрифта */
    line-height: 1.4 !important; /* Нормальный интервал, чтобы буквы не слипались */
    font-weight: normal !important;
    text-align: left !important;
    color: black !important;

    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    white-space: nowrap; /* ЗАПРЕЩАЕМ перенос текста на новую строку */
}

.dropdown-item:hover {
    background-color: #f5f5f5 !important;
    color: black !important;
}

/* Разделитель */
.dropdown-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 4px 0;
    width: 100%;
}

/* Кнопка удаления */
.delete-item-btn:hover {
    color: red !important;
    background-color: #fff0f0 !important;
}

.basket-inp{
    width: 100%;
    border: none;
    /*border-radius: 8px;*/
    padding: 0px 20px;
    /*box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.392);*/
    border: 1px solid rgba(0, 0, 0, 0.11);
}
/* End */


/* Start:/local/templates/lab45/assets/css/form.css?17652013893529*/
.form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 60px 0px;
}

.form-auth{
    margin: 145px 0px;
}

.form form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-input-checkbox{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.form-input-checkbox span{
    font-size: 15px;
    margin-left: 10px;
}

/* .form form input{
    width: 434px;
    height: 41px;
    border: 1px solid black;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
} */

.form form button{
    width: 434px;
    height: 41px;
    border: 1px solid rgba(103, 103, 103, 1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    background: rgba(196, 196, 196, 1);
    color: white;
}

.form form button:hover{
    background-color: black;
}

.form-slect{
    display: flex;
    justify-content: flex-start;
    margin-left: -5%;
}

.form-slect a{
    font-size: 20px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    margin-right: 40px;
}

.form-slect .active{
    color: black;
}

.form-checkbox{
    width: 434px;
}

.form-slect a:hover{
    color: black;
}


.form form .standard-input,
.form form .input-group {
    width: 434px;
    height: 43px;
    border: 1px solid black;
    border-radius: 8px;
    margin-bottom: 16px;
    background: white;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}


.form form .standard-input {
    padding: 12px;
}

.clean-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    height: 100%;
    width: 100%;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    margin: 0 !important;
}

.phone-group {
    padding: 0;
}

.country-select {
    border: none;
    background: transparent;
    outline: none;
    padding: 0 5px 0 12px;
    height: 100%;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px 0 0 8px;
}

.divider {
    width: 1px;
    height: 20px;
    background-color: #ccc;
    margin: 0 5px;
}

.password-group {
    position: relative;
}

.toggle-pass-btn {
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 12px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666 !important;
}

.toggle-pass-btn:hover {
    background: none !important;
    color: black !important;
}


.form form .input-error {
    border-color: #FF4B4B !important;
    animation: shake 0.3s ease-in-out;
}


.error-message {
    color: #FF4B4B;
    font-size: 12px;
    margin-top: -12px;
    margin-bottom: 12px;
    width: 434px;
    text-align: left;
    opacity: 0;
    transform: translateY(-5px);
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.form form .input-success {
    border-color: #27AE60 !important;
}
/* End */


/* Start:/local/templates/lab45/assets/css/oform.css?17669292426571*/
.basket {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
    padding-top: 40px;
}

.basket-left {
    width: 64%;
}

.basket-right {
    width: 32%;
    max-height: 540px;
}

.main-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-section {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.form-row > * {
    width: 50%;
}

.input-default {
    border: 1px solid #777;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 12px;
    outline: none;
    color: #000;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.input-default::placeholder {
    color: #999;
}

.input-default:focus {
    border-color: #000;
}

.phone-group {
    display: flex;
    gap: 10px;
    width: 50%;
}

.phone-prefix {
    width: 60px;
    border: 1px solid #777;
    border-radius: 6px;
    padding: 12px 5px;
    text-align: center;
    background: transparent;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
}

.phone-number {
    width: calc(100% - 70px);
}

.full-width {
    width: 100%;
}

.mb-15 {
    margin-bottom: 15px;
}

.textarea-resize {
    resize: none;
    height: 120px;
}

.delivery-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.payment-grid {
    display: flex;
    gap: 15px;
}

.payment-grid .radio-card {
    width: 50%;
}

.radio-card {
    position: relative;
    cursor: pointer;
    width: 33.33%;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.card-content {
    border: 1px solid #777;
    border-radius: 6px;
    padding: 15px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.card-content.centered {
    align-items: center;
    justify-content: center;
}

.radio-card input[type="radio"]:checked + .card-content {
    border: 1px solid #7B61FF;
    box-shadow: 0 0 0 1px #7B61FF;
}

.card-logo-cdek {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.card-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.payment-logo {
    max-height: 30px;
    max-width: 100px;
    width: auto;
}

.card-info {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}

.submit-order-btn {
    background-color: #666;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 18px 0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.submit-order-btn:hover {
    background-color: #000;
}

.basket-right .summary-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #000;
}

.summary-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 12px;
}

.summary-price-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-arrow {
    margin-left: 8px;
    width: 10px;
    height: 6px;
}

.summary-products {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    margin-bottom: 25px;
}

.summary-item-img {
    width: 80px;
    height: 100px;
    background-color: #f4f4f4;
    margin-right: 15px;
    flex-shrink: 0;
}

.summary-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.summary-item-brand {
    font-weight: bold;
    font-size: 12px;
}

.summary-item-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 5px;
}

.summary-item-name {
    font-size: 12px;
    margin-top: -15px;
}

.summary-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.summary-item-params {
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
}

.summary-item-price {
    font-weight: bold;
    font-size: 12px;
}

.summary-row-discount {
    display: flex;
    justify-content: space-between;
    color: #FF0000;
    font-size: 12px;
    margin-bottom: 20px;
}

.summary-row-discount span {
    color: #FF0000;
}

.separator {
    height: 1px;
    background-color: rgba(196, 196, 196, 1);
    margin: 40px 0px;
    width: 100%;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.summary-total h3 {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 1200px) {
    .basket {
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .basket-left {
        width: 60%;
    }
    .basket-right {
        width: 35%;
    }
}

@media (max-width: 992px) {
    .basket {
        flex-direction: column-reverse;
    }

    .basket-left {
        width: 100%;
    }

    .basket-right {
        width: 100%;
        margin-bottom: 60px;
        max-height: none;
    }

    .main-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-row > * {
        width: 100%;
    }

    .phone-group {
        width: 100%;
    }

    .delivery-grid {
        flex-direction: column;
    }

    .radio-card {
        width: 100%;
    }

    .payment-grid {
        flex-direction: column;
    }

    .payment-grid .radio-card {
        width: 100%;
    }

    .card-content {
        height: auto;
        min-height: 80px;
    }
}
/* End */


/* Start:/local/templates/lab45/assets/css/auth.css?17678853241192*/
.auth-new{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    width: 25%;

    span{
        margin: 12px 0px;
    }
}

.authbtn-black{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: black;
    color: white;
    border: none;
    margin-top: 12px;
}

.authbtn-black:hover{
    background-color: #404040;
}

.authbtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: white;
    color: black;
    border: 1px solid black;
    margin-bottom: 12px;
    img{
        max-width: 30px;
        margin-right: 12px;
    }
}

.authbtn:hover{
    background-color: black;
    color: white;
}

@media (max-width: 1760px) {

    .auth-new{
        width: 40%;
    }

}

@media (max-width: 1200px) {

    .auth-new{
        width: 60%;
    }
}

@media (max-width: 800px) {

    .auth-new{
        width: 80%;
    }
}

@media (max-width: 480px) {

    .auth-new{
        width: 96%;
    }
}
/* End */
/* /local/templates/lab45/assets/css/style.css?176857434128376 */
/* /local/templates/lab45/assets/css/catalog.css?176798520811991 */
/* /local/templates/lab45/assets/css/cabinet.css?17684002936482 */
/* /local/templates/lab45/assets/css/card.css?17670012125993 */
/* /local/templates/lab45/assets/css/basket.css?17664822087273 */
/* /local/templates/lab45/assets/css/form.css?17652013893529 */
/* /local/templates/lab45/assets/css/oform.css?17669292426571 */
/* /local/templates/lab45/assets/css/auth.css?17678853241192 */
