:root {
    --color-primary: #0A2D4D;
    --color-primary-hover: #113F6A;
    --color-bg-main: #FFFFFF;
    --color-bg-secondary: #F4F5F7;
    --color-bg-secondary-hover: #E9ECEF;
    --color-text-main: #1A1A1A;
    --color-text-muted: #666666;
    --color-text-inverse: #FFFFFF;

    --color-bg-dark: #262424;
    --color-surface-dark: #424040;
    --color-btn-dark: #2A2A2A;
    --color-text-dark-muted: #B3B3B3;

    --color-bg-black: #050505;
    --color-input-placeholder: #A0A0A0;
    --color-accent-red: #E63946;

    --font-family-main: 'Inter', system-ui, sans-serif;
    --transition-base: 0.3s ease;
    --radius-pill: 50px;
    --radius-btn: 8px;
    --radius-input: 12px;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {

    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-main);
    overflow-x: clip;
    max-width: 100vw;
    color: var(--color-text-main);
}


html.lock-scroll,
body.lock-scroll {
    overflow: hidden !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

main {
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



.header {
    width: 100%;
    border-bottom: 1px solid var(--color-bg-secondary);
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}


.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px !important;
    width: auto;
}


.header__menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 1.5rem;
}


.header__center-panel {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    width: 100%;
    gap: 2rem;
}

.header__center-panel>div {
    display: flex;
    gap: 2rem;
    flex-direction: row;
}

.header__nav {
    width: 100%;
}

.header__nav-list {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.header__nav-list li {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-base);
}

.header__nav-list li:hover {
    color: var(--color-primary);
}


.header__nav-list>li {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}



.header__nav-list>li>a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}


.header__nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}


.header__nav-list>li:hover>a::after {
    transform: scaleX(1);
}


.header__nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-main);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-btn);
    padding: 12px 0;


    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-base);
    z-index: 100;


    display: flex;
    flex-direction: column;
    gap: 0;
}


.header__nav-list li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.header__nav-list .sub-menu li {
    width: 100%;
}


.header__nav-list .sub-menu li:hover {
    color: inherit;
}


.header__nav-list .sub-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color var(--transition-base), color var(--transition-base);
}


.header__nav-list .sub-menu a:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-bg-secondary);
    padding: 0.75rem;
    justify-content: space-between;
    border-radius: var(--radius-btn);
}

.header__lang {
    padding: 0.1rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-main);
    border-radius: 4px;
    transition: color var(--transition-base);
}

.header__lang:hover {
    color: var(--color-primary);
}

.header__cart,
.header__actions a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.header__cart:hover,
.header__actions a:hover {
    color: var(--color-primary);
}




.header__tools {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.header__menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 1.5rem;
}

.header__center-panel {
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    width: 100%;
    gap: 2rem;
}


@media (max-width: 1024px) {

    .header__tools {
        gap: 1rem;
    }


    .header__actions {
        border-top: none;
        padding: 0;
        width: auto;
        background-color: transparent;
        gap: 12px;
    }


    .header__cart,
    .header__actions a {
        gap: 0.25rem;
    }
}

.header__cart-icon,
.header__actions a svg {
    height: stretch;
    padding: 0.2rem;
    border-radius: 4px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color var(--transition-base);
}

.header .btn--primary {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-btn);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-text-inverse);
}


.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.header__burger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    left: 0;
    transition: var(--transition-base);
}

.header__burger span:nth-child(1) {
    top: 0;
}

.header__burger span:nth-child(2) {
    top: 9px;
}

.header__burger span:nth-child(3) {
    bottom: 0;
}

.header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}



@media (max-width: 1024px) {
    .header__burger {
        display: block;
    }

    .header__center-panel>div {
        flex-direction: column;
    }

    .header__menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        background-color: var(--color-bg-main);
        height: 100vh;

        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
        z-index: 99;
    }

    .header__menu-wrapper.is-open {
        right: 0;
    }

    .header__center-panel {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        align-items: flex-start;
        width: 100%;
        gap: 2rem;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.5rem;
    }

    .header__nav-link {
        font-size: 1.2rem;
    }

    .header__actions {
        border-left: none;
        border-top: 1px solid var(--color-bg-secondary);
        padding: 0.5rem;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .header__contact-btn {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
}

.header__mobile-contacts {
    display: none;
}


@media (max-width: 1024px) {



    .header__mobile-contacts {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        border-top: 1px solid var(--color-bg-secondary, #e5e5e5);
    }

    .header__contacts-top {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .header__phones-wrap,
    .header__contacts-bottom {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: left;
    }


    .header__contacts-label {
        font-size: 0.85rem;
        color: #8c92a0;
        font-weight: 500;
        margin-bottom: 2px;
    }


    .header__contact-link {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--color-text-main, #1a1a1a);
        text-decoration: none;
        transition: color var(--transition-base);
    }

    .header__contacts-bottom .header__contact-link {
        font-size: 1.05rem;
    }


    .header__phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background-color: #4057f8;
        color: #ffffff;
        border-radius: 50%;
        text-decoration: none;

        box-shadow: 0 0 0 6px rgba(64, 87, 248, 0.15);
        margin-right: 10px;
        transition: transform var(--transition-base);
    }

    .header__phone-btn:hover {
        transform: scale(1.05);
    }
}

.hero {
    max-width: 1440px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.hero__container {

    background-image: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.7)), url('../images/background_1.png');
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    padding: 4rem 3rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: var(--color-text-inverse);
    overflow: hidden;
}


.hero__content {
    flex: 1 1 45%;
    max-width: 600px;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}


.btn--white {
    display: inline-block;
    color: var(--color-text-main);
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    background-color: var(--color-bg-main);
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.btn--white:hover {
    background-color: var(--color-bg-secondary);
    transform: translateY(-2px);
}


.hero__carousel {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;


    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.hero__track {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero__track::-webkit-scrollbar {
    display: none;
}


.hero-card {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    scroll-snap-align: start;
}


.hero-card__img-wrapper {
    position: relative;
    width: 160px;
    height: 200px;
    border-radius: 80px;
    background-color: #333;
}

.hero-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 80px;
}


.hero-card__price {
    position: absolute;
    bottom: 20px;
    left: 50%;
    background-color: var(--color-bg-main);
    transform: translateX(-50%);
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-card__title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-text-inverse);
    opacity: 0.8;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.hero__pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--color-bg-main);
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition-base);
}

.hero__dot--active,
.hero__dot:hover {
    background-color: var(--color-bg-main);
}




@media (max-width: 1024px) {
    .hero__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
    }

    .hero__title {
        font-size: 1.70rem;
    }

    .hero__track {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 1rem;
    }

    .hero__container {
        padding: 2rem 1.5rem;
    }

    .hero__title {
        font-size: 1.70rem;
    }

    .hero__btn {
        width: 100%;
    }

    .hero-card {
        width: 140px;
    }

    .hero-card__img-wrapper {
        width: 140px;
        height: 170px;
    }
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}


.btn--white {
    border: none;
    display: inline-block;
    color: var(--color-text-main);
    padding: 1rem 0;
    width: 100%;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition-base);
}

.btn--white:hover {
    background-color: var(--color-bg-secondary);
}


.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-bg-secondary-hover);    
}

.features__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.features__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.features__icon svg {
    width: 100%;
    height: 100%;
}

.features__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.features__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.assortment__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 3rem;
    z-index: 1;
}


.assortment__title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.assortment__info {
    display: flex;
    gap: 2rem;
    max-width: 600px;
}

.assortment__info p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.assortment__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-text-main);
}


.cat-card--wide {
    grid-column: span 2;
}


.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity var(--transition-base);
}

.cat-card:hover::before {
    opacity: 0.8;
}


.cat-card__main-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}


.cat-card__content {
    position: relative;
    z-index: 3;
}


.cat-card__tag-link,
.cat-card__btn {
    position: relative;
    z-index: 4;
}


.cat-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
}

.cat-card__title {
    color: var(--color-text-inverse);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cat-card__top p {
    color: var(--color-bg-secondary);
}


.cat-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cat-card__tags span {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    background-color: var(--color-bg-main);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}


.cat-card__dot {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cat-card__dot--red {
    background-color: #E63946;
}

.cat-card__btn {
    margin-top: auto;
}

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

.cat-phone__btn svg {
    height: 1.5rem;
    width: 1.5rem;
}

@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .assortment__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .assortment__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {

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


    .cat-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .assortment__header::before {
        font-size: 8rem;
        left: 0;
        top: 0;
        transform: none;
    }

    .container {
        padding: 0 1rem;
    }

    .assortment__title {
        font-size: 2.5rem !important;
    }

    .assortment__info {
        flex-direction: column;
        gap: 1rem;
    }


    .assortment__grid {
        grid-template-columns: 1fr;
    }

    .cat-card {
        min-height: 350px;
    }
}




.about {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about__container {

    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}


.about__content {
    position: relative;
    max-width: 550px;
    z-index: 2;
}

.about__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.about__text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}


.about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity var(--transition-base);
}

.about__link:hover {
    opacity: 0.7;
}

.about__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.about__link:hover .about__link-icon {
    transform: translate(3px, -3px);
}


.about__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.about__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease;
}

.about__image-wrapper:hover .about__image {
    transform: scale(1.03);
}




@media (max-width: 1024px) {
    .about__container {
        gap: 3rem;
    }

    .about__title {
        font-size: 2rem;
    }

    .about__content::before {
        font-size: 30rem;
        left: -10rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }


    .about__image-wrapper {
        border-radius: 20px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__content {
        max-width: 100%;
    }

    .about__content::before {
        font-size: 20rem;
        left: -5rem;
        top: 0;
        transform: none;
    }

    .about__image-wrapper {
        min-height: 400px;
    }
}


.reviews-section {

    padding: 20px 0;
    color: var(--color-text-inverse);
    overflow: hidden;

    font-family: var(--font-family-main);
}

.reviews-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 60px 0;
    letter-spacing: -1px;
}


.reviews-slider-wrapper {
    position: relative;
    width: 100%;

}


.reviews-track {
    display: flex;
    align-items: center;
    gap: 30px;

    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}


.review-slide {
    width: 650px;

    max-width: 85vw;

    flex-shrink: 0;
    opacity: 0.3;

    transform: scale(0.9);

    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}


.review-slide.is-active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
}


.review-card {
    background-color: #0f0f0f;

    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}


.review-card::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
}


.review-quote-icon {
    position: absolute;
    left: 40px;
    top: 45px;
    font-size: 45px;
    color: var(--color-text-dark-muted);
    font-family: var(--font-family-main);
    line-height: 0.5;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 40px;

    color: var(--color-text-dark-muted);
}

.review-slide.is-active .review-text {
    color: var(--color-text-inverse);

}


.review-author {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--color-text-dark-muted);
    font-weight: 700;
}


.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.review-dot {
    width: 30px;
    height: 2px;
    background-color: var(--color-surface-dark);
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.review-dot.is-active {
    background-color: var(--color-text-inverse);
    width: 40px;

}


@media (max-width: 768px) {
    .reviews-section {
        padding: 20px 0;
    }

    .reviews-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .review-slide {
        width: 320px;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-quote-icon {
        left: 20px;
        top: 35px;
    }

    .review-text {
        font-size: 1rem;
        padding-left: 30px;
    }
}



.custom-gallery-section {
    background: linear-gradient(to bottom,
            var(--color-bg-black) 0%,
            var(--color-bg-black) 60%,
            var(--color-bg-main) 60%,
            var(--color-bg-main) 100%);
    padding: 0 0 100px;
    width: 100%;
}

.gallery-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.item-1 {
    grid-column: 1 / 3;
}

.item-1 img {
    aspect-ratio: 16 / 10;
}

.item-2 {
    grid-column: 3 / 4;

    transform: translateY(20%);
}

.item-2 img {
    aspect-ratio: 1 / 1;
}

.item-3 {
    grid-column: 1 / 2;
    width: 80%;
    margin: 0 auto;

    transform: translateY(-15%);
}

.item-3 img {
    aspect-ratio: 1 / 1;
}

.item-4 {
    grid-column: 2 / 3;

    transform: translateY(10%);
}

.item-4 img {
    aspect-ratio: 4 / 5;
}

.item-5 {
    grid-column: 3 / 4;

    transform: translateY(-20%);
}

.item-5 img {
    aspect-ratio: 4 / 3;
}

.gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}







@media (max-width: 1024px) {
    .gallery-grid {
        gap: 20px;
    }

    .custom-gallery-section {
        padding: 80px 0;
    }

    .item-3 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .custom-gallery-section {
        padding: 20px 0;
    }

    .gallery-container {

        padding: 0 10px;
    }

    .gallery-grid {

        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }



}


.hits__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: block;

    min-width: 0;
    overflow: hidden;
}

.hits__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.hits__slider-controls {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.hits__slider-btn {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #111111;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.hits__slider-btn:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}



.hits__slider-wrapper {
    width: 100%;
    min-width: 0;
    overflow: hidden;

}




.hits__slider .product-card,
.hits__slider .hit-card {
    width: calc((100% - 6rem) / 4);
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    scroll-snap-align: start;
    flex-direction: column;
    user-select: none;
}

.hits__slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.hits__slider::-webkit-scrollbar {
    display: none;
}

.hits__slider:active {
    cursor: grabbing;
}


.hit-card {
    width: calc((100% - 6rem) / 4);
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    user-select: none;

}

.hit-card__img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #333;
    margin-bottom: 1.5rem;
}

.hit-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hit-card__badge {
    position: absolute;
    background-color: var(--color-bg-main);
    top: 1rem;
    left: 1rem;
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.hit-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.product-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    min-height: 2.8em;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hit-card__price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hit-card__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    white-space: nowrap;
}

.hit-card__line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-text-main);
    opacity: 0.2;
}


.btn--dark {
    display: block;
    width: 100%;
    background-color: #2A2A2A;
    color: var(--color-text-inverse);
    text-align: center;
    padding: 0.85rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color var(--transition-base);
}

.btn--dark:hover {
    background-color: var(--color-text-main);
}


.hit-card__quick-buy {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family-main);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.hit-card__quick-buy:hover {
    opacity: 0.7;
}

.hit-card__dot {
    width: 6px;
    height: 6px;
    background-color: #E63946;
    border-radius: 50%;
}

.marquee {
    width: 100%;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;

    border-top: 1px solid var(--color-bg-secondary-hover);
}

.marquee__track {
    display: flex;
    width: max-content;

    animation: scrollMarquee 15s linear infinite;
}


.marquee__track:hover {
    animation-play-state: paused;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}

.marquee__content span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
}

.marquee__bullet {
    font-size: 1.5rem !important;
}


@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .hits__slider {
        gap: 0.75rem;
    }

    .hits__slider-controls {
        justify-content: center;
    }

    .hits__container {
        padding: 0 0.75rem;
    }

    .hits__title {
        font-size: 2rem;
    }

    .hits__slider .product-card,
    .hits__slider .hit-card {
        width: calc((100% - 1.5rem) / 2);
    }

    .hit-card__img-wrapper {
        height: 240px;
    }

    .marquee__content span {
        font-size: 1rem;
    }
}




.limited {
    padding: 4rem 0;
    position: relative;
}


.limited__main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}


.limited__wrapper {
    background-color: var(--color-bg-dark);
    border-radius: 24px;
    padding: 3rem 4rem;
}


.limited__header {
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.limited__title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.limited__gift-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-inverse);
    font-weight: 500;
    font-size: 0.95rem;
}


.limited__grid {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}



.limited-card {
    background-color: var(--color-surface-dark);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}


.limited-card__img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.limited-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.limited-card__badge {
    position: absolute;
    top: 1rem;
    background-color: var(--color-bg-main);
    left: 1rem;
    color: var(--color-text-main);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    z-index: 2;
}


.limited-card__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.limited-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
}

.limited-card__dot--active {
    background-color: var(--color-text-inverse);
}


.limited-card__body {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.limited-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.limited-card__name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-inverse);
    line-height: 1.4;
}

.limited-card__name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.limited-card__price {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    white-space: nowrap;
}

.limited-card__desc {
    font-size: 0.8rem;
    color: var(--color-text-dark-muted);
    margin-bottom: 2rem;
}


.limited-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.btn--dark {
    display: block;
    width: 100%;
    background-color: var(--color-btn-dark);
    color: var(--color-text-inverse);
    text-align: center;
    padding: 0.85rem;
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color var(--transition-base);
}

.btn--dark:hover {
    background-color: #1a1a1a;
}




@media (max-width: 1200px) {
    .limited__wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .limited__main-title {
        font-size: 2.5rem;
    }

    .limited__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .limited__main-title {
        font-size: 2rem;
    }

    .limited__wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .limited__grid {
        grid-template-columns: 1fr;
    }
}




.contact-cta {
    padding: 1rem 0;
}


.contact-cta__wrapper {
    background-color: var(--color-bg-black);
    border-radius: 24px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: grid;
    position: relative;
    grid-template-columns: minmax(200px, 1fr) 1.5fr 1.5fr;
    gap: 1rem;
    align-items: start;
    position: relative;
    overflow: hidden;
}


.contact-cta__visual {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-cta__label {
    color: var(--color-text-inverse);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-cta__dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-red);
    border-radius: 50%;
}

.contact-cta__phone-mockup {
    margin-bottom: -8rem;
    align-self: center;
    width: 100%;
    max-width: 240px;
}

.contact-cta__phone-img {
    width: 100%;
    height: auto;
    display: block;
}


.contact-cta__title {
    color: var(--color-text-inverse);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.contact-cta__desc {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-cta__socials {
    display: flex;
    gap: 1rem;
}

.contact-cta__social-btn {
    flex: 1;
    text-align: center;
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form__row--2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


.contact-form__input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-input);
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow var(--transition-base);
}

.contact-form__input:focus {
    box-shadow: 0 0 0 2px var(--color-primary);
}

.contact-form__input::placeholder {
    color: var(--color-input-placeholder);
}

.contact-form__textarea {
    resize: none;
}


.contact-form__phone-group {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: var(--radius-input);

}

.contact-form__phone-group:focus-within {
    box-shadow: 0 0 0 2px var(--color-primary);
}

.contact-form__flag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem 0 1rem;
    cursor: pointer;
}

.contact-form__flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.contact-form__input--phone {
    padding-left: 0;
    border-radius: 0 12px 12px 0;
}

.contact-form__input--phone:focus {
    box-shadow: none;
}


.contact-form__checkbox-row {
    margin: 0.5rem 0 1rem 0;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.contact-form__checkbox-input {
    display: none;
}


.contact-form__checkbox-custom {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-color: var(--color-surface-dark);
    border-radius: 4px;
    position: relative;
    margin-top: 2px;
    transition: background-color var(--transition-base);
}


.contact-form__checkbox-input:checked+.contact-form__checkbox-custom {
    background-color: var(--color-primary);
}

.contact-form__checkbox-input:checked+.contact-form__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-form__checkbox-text {
    font-size: 0.8rem;
    color: var(--color-text-dark-muted);
    line-height: 1.4;
}

.contact-form__checkbox-text strong {
    color: var(--color-text-inverse);
    font-weight: 500;
}


.contact-form__submit {
    width: 100%;
    padding: 1.15rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    transition: background-color var(--transition-base);
}

.contact-form__submit:hover {
    background-color: var(--color-bg-secondary-hover);
}


.contact-form__flag-dropdown {
    position: relative;
    cursor: pointer;
    background-color: var(--color-bg-main);
    display: flex;
    border-top-left-radius: var(--radius-input);
    border-bottom-left-radius: var(--radius-input);
    align-items: center;
    height: 100%;
}


.contact-form__flag-list {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 5px 0;
    margin: 0;
    width: max-content;
    z-index: 100;
}


.contact-form__flag-list.is-open {
    display: block;
}


.contact-form__flag-list li {
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.contact-form__flag-list li:hover {
    background-color: #f5f5f5;
}


.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
}




@media (max-width: 1200px) {
    .contact-cta__wrapper {
        padding: 3rem;
        grid-template-columns: 1fr 1.2fr;
    }

    .contact-cta__visual {
        display: none;
    }
}

@media (max-width: 992px) {
    .contact-cta__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-cta__title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-cta__wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form__row--2cols {
        grid-template-columns: 1fr;
    }

    .contact-cta__socials {
        flex-direction: column;
    }
}

.seo-block {
    padding: 4rem 0;
}

.seo-block__wrapper {

    max-width: 1000px;
}

.seo-block__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.seo-block__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seo-block__content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-main);
}


.seo-block__hidden {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-base);
}

.seo-block__hidden-inner {
    min-height: 0;
    overflow: hidden;
}

.seo-block__hidden.is-expanded {
    grid-template-rows: 1fr;
    margin-top: 0.5rem;
}


.seo-block__read-more {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-base);
}

.seo-block__read-more:hover {
    color: var(--color-text-main);
}

.seo-block__wrapper {
    margin-bottom: 20px;
}

.contact-cta__socials .btn--primary {
    padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
    .seo-block {
        padding: 3rem 0;
    }

    .seo-block__title {
        font-size: 1.15rem;
    }
}



.footer {
    padding: 0 0 2rem 0;
}


.footer__wrapper {
    background-color: var(--color-bg-black);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}


.footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}


.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer__label {
    font-size: 0.85rem;
    color: var(--color-text-dark-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer__link-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-inverse);
    letter-spacing: -0.02em;
    transition: opacity var(--transition-base);
}

.footer__link-large:hover {
    opacity: 0.8;
}

.footer__contact-details {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.footer__text {
    font-size: 0.85rem;
    color: var(--color-text-inverse);
    line-height: 1.5;
    font-style: normal;
}


.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-list li {
    font-size: 0.85rem;
    color: var(--color-text-inverse);
    font-weight: 500;
    transition: color var(--transition-base);
}

.footer__nav-list li:hover {
    color: var(--color-text-dark-muted);
}


.footer__middle {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer__middle img {
    width: 100%;
}


.footer__huge-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 900;
    color: var(--color-text-inverse);

    font-size: clamp(3rem, 11vw, 10.5rem);
    line-height: 0.8;
    letter-spacing: -0.02em;
    margin: 0;
    text-transform: uppercase;
}


.footer__huge-text--blur {
    filter: blur(6px);
    opacity: 0.9;

    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 100%);
}


.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
}

.footer__bottom-text,
.footer__bottom-link {
    font-size: 0.75rem;
    color: var(--color-text-dark-muted);
    line-height: 1.5;
}

.footer__bottom-link {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition-base);
}

.footer__bottom-link:hover {
    text-decoration-color: var(--color-text-dark-muted);
}




@media (max-width: 1200px) {
    .footer__wrapper {
        padding: 3rem;
    }

    .footer__link-large {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__huge-text--blur {
        filter: blur(4px);
    }
}

@media (max-width: 768px) {
    .footer__wrapper {
        padding: 2rem 1.5rem;
        gap: 3rem;
    }

    .footer__contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__huge-text {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}




.category-hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}


.category-hero__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}


.category-hero__container {

    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
}


.category-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.category-hero__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition-base);
}

.category-hero__back:hover {
    color: var(--color-text-inverse);
}


.category-hero__breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-hero__breadcrumbs-item {
    color: var(--color-text-inverse);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-hero__breadcrumbs-link {
    color: var(--color-text-dark-muted);
    display: flex;
    align-items: center;
    transition: color var(--transition-base);
}

.category-hero__breadcrumbs-link:hover {
    color: var(--color-text-inverse);
}

.category-hero__breadcrumbs-separator {
    color: var(--color-text-dark-muted);
    font-size: 0.75rem;
}


.category-hero__bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}


.category-hero__icon-box {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.category-hero__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.category-hero__title {
    color: var(--color-text-inverse);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.category-hero__subtitle {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    font-weight: 400;
}




@media (max-width: 1024px) {
    .category-hero {
        min-height: 350px;
    }

    .category-hero__title {
        font-size: 1.75rem;
    }

    .category-hero__icon-box {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .category-hero__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .category-hero__breadcrumbs-list {
        flex-wrap: wrap;
    }

    .category-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 3rem;
    }

    .category-hero__icon-box {
        width: 70px;
        height: 70px;
    }

    .category-hero__title {
        font-size: 2.25rem;
    }
}




.catalog {
    padding: 2rem 0 4rem 0;
}


.catalog__tags-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-bg-secondary-hover);
    overflow-x: auto;
    scrollbar-width: none;
}

.catalog__tags-wrapper::-webkit-scrollbar {
    display: none;
}

.catalog__tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-main);
    white-space: nowrap;
}

.catalog__tags {
    display: flex;
    gap: 0.5rem;
}

.catalog__tag {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-btn);
    white-space: nowrap;
    transition: var(--transition-base);
}

.catalog__tag:hover {
    background-color: var(--color-bg-secondary-hover);
    color: var(--color-text-main);
}


.catalog__toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}


.catalog__filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-bg-secondary-hover);
    border-radius: var(--radius-btn);
    font-weight: 500;
    cursor: pointer;
}

.catalog__toolbar-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.catalog__search {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-bg-secondary-hover);
    border-radius: var(--radius-btn);
    overflow: hidden;
    width: 300px;
}

.catalog__search-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-family: var(--font-family-main);
    font-size: 0.95rem;
}

.catalog__search-btn {
    background: none;
    border: none;
    padding: 0 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
}


.catalog__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.catalog__sort-label {
    color: var(--color-text-muted);
}

.custom-select {
    position: relative;
    user-select: none;
    min-width: 200px;

}


.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    outline: none;
}


.custom-select__arrow {
    margin-left: 0.5rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-base);
}


.custom-select.is-open .custom-select__arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}


.custom-select__dropdown {
    position: absolute;
    top: calc(100% + 5px);
    background-color: var(--color-bg-main);
    right: 0;
    min-width: max-content;
    border-radius: var(--radius-btn);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    z-index: 100;


    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}


.custom-select.is-open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.custom-select__option {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base);
}


.custom-select__option:hover {
    background-color: var(--color-bg-secondary-hover);
}


.custom-select__option.is-selected {
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-bg-secondary);
}


.catalog__body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}


.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}


.filter-price__slider {
    position: relative;
    height: 2px;
    background-color: var(--color-bg-secondary-hover);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.filter-price__range {
    position: absolute;
    height: 100%;
    background-color: var(--color-text-muted);
}

.filter-price__thumb {
    position: absolute;
    top: 50%;
    background-color: var(--color-bg-main);
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.filter-price__inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-price__input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-bg-secondary-hover);
    border-radius: 4px;
    text-align: center;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    outline: none;
}

.filter-price__input::-webkit-outer-spin-button,
.filter-price__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.filter-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox__box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid var(--color-bg-secondary-hover);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-base);
    margin-top: 2px;
}

.custom-checkbox input:checked+.custom-checkbox__box {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox input:checked+.custom-checkbox__box::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.custom-checkbox__text {
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.4;
}


.catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card__img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #333;
    margin-bottom: 1.5rem;
    aspect-ratio: 1 / 1;
}

.hits__slider .product-card__img-wrapper {
    width: 100%;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    background-color: var(--color-bg-main);
    border-radius: var(--radius-pill);
    z-index: 2;
}

.product-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.product-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.product-card__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    white-space: nowrap;
}

.product-card__line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-text-main);
    opacity: 0.2;
}

.product-card__btn {
    margin-bottom: 1rem;
}

.product-card__quick-buy {
    padding: 0 0 0.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family-main);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.product-card__quick-buy:hover {
    background-color: transparent;
    opacity: 0.7;
}

.product-card__dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-red);
    border-radius: 50%;
}




@media (max-width: 1400px) {
    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .catalog__body {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }

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

    .catalog__search {
        width: 200px;
    }
}


@media (min-width: 769px) {
    .catalog__sidebar-close {
        display: none;
    }
}

@media (max-width: 768px) {
    .catalog__toolbar {
        align-items: start;
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .catalog__filter-toggle {
        display: flex;
    }

    .catalog__toolbar-actions {
        gap: 1rem;
        flex-direction: column;
    }

    .catalog__search {
        width: 100%;
    }

    .catalog__body {
        grid-template-columns: 1fr;
    }

    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }




    .catalog__sidebar {
        position: fixed;
        top: 0;
        left: 0;

        width: 320px;
        max-width: 85%;
        height: 100vh;

        background-color: #fff;
        z-index: 9999;
        padding: 20px;
        overflow-y: auto;



        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }


    .catalog__sidebar.is-open {
        transform: translateX(0);
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    }


    .catalog__sidebar-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: 700;
        padding: 0;
        margin-bottom: 25px;
        cursor: pointer;
        color: #000;
    }


    .catalog-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;


        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .catalog-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }


    body.no-scroll {
        overflow: hidden;
    }
}

@media (max-width: 440px) {
    .product-card__price {
        font-size: 0.9rem;
        line-height: 0.9rem;
        min-height: 1.8rem;
        white-space: normal;
    }
}



.product {
    padding: 0.5rem 0 0.5rem 0;
}


.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}


.breadcrumb__item a,
.breadcrumb__separator {
    color: #A0A0A0;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb__item a:hover {
    color: var(--color-text-main);
}


.breadcrumb__item:last-child {
    text-decoration: underline;
    color: var(--color-text-main);
    font-size: 0.8rem;
    font-weight: 500;
}


.product__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}



.product__gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    position: sticky;
    top: 20px;
}

.product__image-main {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__badge--sale {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: #FF4D6D;
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    z-index: 2;
}


.product__thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product__thumbnails::-webkit-scrollbar {
    display: none;
}


.product__thumb {

    flex-shrink: 0;


    width: 80px;
    height: 80px;


    scroll-snap-align: start;


    padding: 0;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease;
}


.product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product__thumb.is-active {
    border-color: #000000;
}

.product__thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background-color: var(--color-bg-secondary);
    transition: border-color var(--transition-base);
}

.product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__thumb.is-active,
.product__thumb:hover {
    border-color: var(--color-text-main);
}


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

.product__title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-features-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product__code strong {
    color: var(--color-text-main);
}

.product__price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product__price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.product__price-old {
    font-size: 1.5rem;
    color: #A0A0A0;
    text-decoration: line-through;
    font-weight: 500;
}

.product__status {
    display: block;
    width: max-content;
    background-color: var(--color-bg-black);
    color: var(--color-text-inverse);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    align-self: flex-start;
}


.product__option {
    margin-bottom: 1.5rem;
}

.product__option-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.product__option-btn {
    width: 100%;
    max-width: 300px;
    text-align: left;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-text-muted);
    border-radius: 4px;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    color: var(--color-text-main);
    cursor: pointer;
}


.product__delivery {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.product__delivery strong {
    color: var(--color-text-main);
}


.product__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-bg-secondary-hover);
    border-radius: 8px;
    overflow: hidden;
    height: 50px;
}

.quantity__btn {
    background: none;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 1.2rem;
    color: var(--color-text-main);
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.quantity__btn:hover {
    background-color: var(--color-bg-secondary);
}

.quantity__input {
    width: 40px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: var(--font-family-main);
    font-size: 1rem;
    font-weight: 500;
    outline: none;

    -moz-appearance: textfield;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.btn--black {
    flex-grow: 1;
    background-color: #000000;
    color: var(--color-text-inverse);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.btn--black:hover {
    opacity: 0.8;
}


.product__secondary-actions {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product__action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-family-main);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.product__action-btn:hover {
    opacity: 0.6;
}


.product__description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.product__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    border: 1px solid var(--color-bg-secondary-hover);
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.product__feature svg {
    color: var(--color-text-main);
    width: 32px;
    height: 32px;
}



@media (max-width: 1024px) {
    .product__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product__gallery {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product__title {
        font-size: 1.5rem;
    }

    .product__gallery {
        max-width: calc(100vw - 2rem);
    }

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

    .product__actions {
        flex-direction: column;
    }

    .btn--black {
        padding: 1rem;
    }
}



.product-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px; 
    margin: auto;
    max-width: 1400px;
}


.accordion-item {    
    border-radius: var(--radius-btn, 8px);
    overflow: hidden;
}


.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: left;
    transition: background-color var(--transition-base);
}

.accordion-header:hover, .first-click .accordion-header {
    background-color: var(--color-bg-secondary-hover, #E9ECEF);
}


.accordion-icon {
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    color: var(--color-text-main);
    transition: transform var(--transition-base);
}


.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-base);
}


.accordion-inner {
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    transition: opacity var(--transition-base), padding var(--transition-base);
}

.accordion-item.is-active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.is-active .accordion-inner {
    padding-bottom: 24px;
    opacity: 1;
}


.accordion-item.is-active .accordion-icon {
    transform: rotate(45deg);
}

.product-tabs {
    padding: 1rem 0 1rem 0;
}


.product-tabs__nav {
    display: flex;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    border-bottom: 1px solid var(--color-bg-secondary-hover);
    padding-bottom: 1rem;


    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-tabs__nav::-webkit-scrollbar {
    display: none;
}

.product-tabs__btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-family-main);
    font-size: 1.05rem;
    font-weight: 500;
    color: #A0A0A0;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition-base);
}

.product-tabs__btn:hover {
    color: var(--color-text-muted);
}


.product-tabs__btn.is-active {
    color: var(--color-primary);
    font-weight: 600;
}

.product-tabs__panel {
    display: none;

}


.product-tabs__panel.is-active {
    display: block;


    animation: tabFadeIn 0.4s ease;


    opacity: 1;
    transform: none;
}


@keyframes tabFadeIn {
    0% {
        opacity: 0;

        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-tabs__panel.is-active {
    display: block;
}

.product-tabs__panel>p,
.product-tabs__panel>ul,
.product-tabs__panel>a {
    max-width: 1400px;
    margin: 0 auto 1rem;
}


.product-tabs__panel p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-tabs__panel p:last-child {
    margin-bottom: 0;
}

.product-tabs__list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}


@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




@media (max-width: 768px) {
    .product-tabs__nav {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .product-tabs__btn {
        font-size: 0.95rem;
    }

    .product-tabs__panel>p,
    .product-tabs__panel>ul,
    .product-tabs__panel>a {
        padding: 0 1rem;
    }
}

.custom-content-section {
    background-color: var(--color-bg-black);
    position: relative;
    z-index: 1;
}


.custom-content-section::before {
    content: "";
    position: absolute;
    top: 300px;
    left: 0;
    width: 100%;
    height: 500px;

    background-image:
        linear-gradient(to bottom,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0) 15%,
            rgba(5, 5, 5, 0) 85%,
            rgba(5, 5, 5, 1) 100%),
        linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)),
        var(--dynamic-bg);

    background-position: center;
    background-size: 100% 100%, 100% 100%, cover;
    background-repeat: no-repeat;

    background-attachment: scroll, scroll, fixed;

    z-index: -1;
}

@media (hover: none) and (pointer: coarse) {
    .custom-content-section::before {

        background-attachment: scroll, scroll, scroll;
    }
}

.engraving-section {


    padding: 80px 0;
    font-family: var(--font-family-main);
    color: var(--color-text-inverse);
}

.engraving-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.engraving-header {
    margin-bottom: 40px;
}

.engraving-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-inverse);
    line-height: 1.2;
}

.engraving-subtitle {
    font-size: 1.1rem !important;
    font-weight: 400 !important;

    color: var(--color-text-inverse) !important;
    line-height: 1.5 !important;
}


.engraving-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.engraving-item {
    width: 100%;
}

.engraving-item img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: var(--radius-btn);

    border: 1px solid var(--color-surface-dark);
    transition: transform var(--transition-base);
}


.engraving-item img:hover {
    transform: scale(1.02);
}






@media (max-width: 1024px) {
    .engraving-section {
        padding: 20px 0;
    }

    .engraving-title {
        font-size: 2rem;
    }

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


@media (max-width: 768px) {
    .engraving-section {
        padding: 40px 0;
    }

    .engraving-container {
        padding: 0 1rem;
    }

    .engraving-title {
        font-size: 1.75rem;
    }

    .engraving-subtitle {
        font-size: 1rem;
    }

    .engraving-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.premium-features {
    position: relative;
    font-family: var(--font-family-main);
    color: var(--color-text-inverse);

    padding: 120px 0 80px 0;
}

.premium-features__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}


.premium-features__header {
    margin-bottom: 70px;
}

.premium-features__subtitle {
    display: block;
    font-size: 1rem;
    color: var(--color-text-dark-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.premium-features__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--color-text-inverse);
    line-height: 1.1;
    letter-spacing: -0.5px;
}


.premium-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 60px;
}


.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}


.feature-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--color-text-inverse);
    opacity: 0.9;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
}


.feature-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-inverse);
    line-height: 1.3;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-dark-muted);
    margin: 0;
    line-height: 1.6;
}




@media (max-width: 1024px) {
    .premium-features__title {
        font-size: 2.8rem;
    }

    .premium-features__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
        column-gap: 30px;
    }
}


@media (max-width: 768px) {
    .premium-features {
        padding: 80px 0 50px 0;
    }

    .premium-features__container {
        padding: 0 1rem;
    }

    .premium-features__header {
        margin-bottom: 40px;
    }

    .premium-features__subtitle {
        font-size: 0.9rem;
    }

    .premium-features__title {
        font-size: 2.2rem;
    }

    .premium-features__grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .feature-card {
        gap: 15px;
    }
}


.composition-section {

    color: var(--color-text-inverse);
    padding: 20px 0;
    font-family: var(--font-family-main);
}

.composition-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}


.composition-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}


.composition-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
}


.composition-list {
    display: flex;
    flex-direction: column;
}

.composition-item {
    display: flex;
    gap: 25px;
    position: relative;
    padding-bottom: 40px;
}


.composition-item:last-child {
    padding-bottom: 0;
}


.composition-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 35px;
    bottom: 0;
    width: 1px;
    background-color: var(--color-surface-dark);
    z-index: 1;
}


.item-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-text-dark-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-inverse);

    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-top: -2px;
}


.item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-inverse);
}

.item-desc {
    font-size: 0.85rem;
    color: var(--color-text-dark-muted);
    line-height: 1.6;
    margin: 0;
}


.composition-image-wrapper {
    width: 100%;
}

.composition-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-btn);
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}




@media (max-width: 1024px) {
    .composition-grid {
        gap: 40px;
    }

    .composition-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .item-title {
        font-size: 1.05rem;
    }
}


@media (max-width: 768px) {
    .composition-section {
        padding: 20px 0;
    }

    .composition-container {
        padding: 0 1rem;
    }

    .composition-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .composition-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}


.story-section {

    padding: 20px 0;
    font-family: var(--font-family-main);
}

.story-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}


.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.story-image-col {
    width: 100%;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


.story-text-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--color-text-inverse);
    letter-spacing: -1px;
}

.story-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text-dark-muted);
    max-width: 90%;
}




@media (max-width: 1024px) {
    .story-grid {
        gap: 40px;
    }

    .story-title {
        font-size: 2.4rem;
    }

    .story-desc {
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .story-section {
        padding: 20px 0;
    }

    .story-container {
        padding: 0 1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-desc {
        font-size: 1rem;
    }
}

.hit-card.gallery-card {
    width: calc((100% - 6rem) / 3.5);
}

.hit-card.gallery-card img {
    width: 100%;
}

.hits__slider.gallery {
    gap: 1rem;
}




.why-us {
    padding: 5rem 0;
}

.why-us__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


.why-us__content {
    display: flex;
    flex-direction: column;
}

.why-us__title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.why-us__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.why-us__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.why-us__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-us__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 4 / 5;
}




@media (max-width: 1024px) {
    .why-us__wrapper {
        gap: 2.5rem;
    }

    .why-us__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 3rem 0;
    }

    .why-us__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us__gallery {
        gap: 1rem;
    }

    .why-us__image {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .why-us__title {
        font-size: 1.75rem;
    }
}




.brand-philosophy {
    padding: 6rem 0;
}


.brand-philosophy__header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-philosophy__headline {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}


.text-primary {
    color: var(--color-primary);
    font-weight: 600;
}

.brand-philosophy__subheadline {
    font-size: 2.5rem;
    font-weight: 500;
    color: #C4C4C4;
    line-height: 1.2;
    letter-spacing: -0.02em;
}


.brand-philosophy__body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.brand-philosophy__content {
    max-width: 500px;
}

.brand-philosophy__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
}

.brand-philosophy__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-philosophy__text * {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


.brand-philosophy__media {
    width: 100%;
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
    background-color: var(--color-bg-secondary);

    aspect-ratio: 4 / 3;
}

.brand-philosophy__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




@media (max-width: 1200px) {
    .brand-philosophy__headline {
        font-size: 2.5rem;
    }

    .brand-philosophy__subheadline {
        font-size: 2rem;
    }

    .brand-philosophy__body {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .brand-philosophy__body {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .brand-philosophy__content {
        max-width: 100%;
    }

    .brand-philosophy__header {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .brand-philosophy {
        padding: 4rem 0;
    }

    .brand-philosophy__headline {
        font-size: 1.75rem;
    }

    .brand-philosophy__subheadline {
        font-size: 1.5rem;
    }

    .brand-philosophy__header {
        gap: 1.5rem;
    }

    .brand-philosophy__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .brand-philosophy__media {
        border-radius: 16px;
    }
}



.info-tabs {
    padding: 4rem 0;
}


.info-tabs__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border-radius: 12px;
    max-width: fit-content;
    margin: 0 auto 3rem auto;

    overflow-x: auto;
    scrollbar-width: none;
}

.info-tabs__nav::-webkit-scrollbar {
    display: none;
}

.info-tabs__btn {
    background: transparent;
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 8px;
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.info-tabs__btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}


.info-tabs__btn.is-active {
    background-color: var(--color-btn-dark);
    color: var(--color-text-inverse);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.info-tabs__panel {
    display: none;
    animation: tabFadeIn 0.4s ease forwards;
}

.info-tabs__panel.is-active {
    display: block;
}


.info-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}


.info-panel__content {
    padding: 4rem 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-panel__title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.info-panel__text {
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.6;
}


.info-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-panel__list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.info-panel__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    background-color: var(--color-text-main);
    border-radius: 50%;
}

.info-panel__link {
    color: var(--color-text-main);
    text-decoration: underline;
    text-decoration-color: rgba(26, 26, 26, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition-base);
}

.info-panel__link:hover {
    text-decoration-color: var(--color-text-main);
}


.info-panel__media {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-surface-dark);
}

.info-panel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



@media (max-width: 1024px) {
    .info-panel__content {
        padding: 2.5rem 2rem;
    }

    .info-panel__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .info-tabs__nav {
        width: 100%;
        justify-content: flex-start;
        border-radius: 8px;
        padding: 0.25rem;
    }

    .info-tabs__btn {
        padding: 0.75rem 1rem;
    }

    .info-panel__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .info-panel__media {
        min-height: 300px;
    }
}


.contacts-info {
    padding: 4rem 0;
}


.contacts-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-bg-secondary-hover);
}

.contacts-features__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts-features__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--color-text-muted);
}

.contacts-features__icon svg {
    width: 100%;
    height: 100%;
}

.contacts-features__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.contacts-features__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}


.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contacts-card {
    background-color: var(--color-bg-secondary);
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.contacts-card__title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.contacts-card__block {
    margin-bottom: 2rem;
}

.contacts-card__block:last-child {
    margin-bottom: 0;
}

.contacts-card__label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.contacts-card__link {
    color: var(--color-text-main);
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--color-text-main);
    text-underline-offset: 4px;
    transition: opacity var(--transition-base);
}

.contacts-card__link:hover {
    opacity: 0.7;
}

.contacts-card__link--large {
    font-size: 1.75rem;
}

.contacts-card__socials {
    display: flex;
    gap: 1rem;
}

.contacts-card__social-link {
    display: inline-flex;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.contacts-card__social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}


.contacts-card__text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.text-uppercase {
    text-transform: uppercase;
    font-weight: 500;
}


.contacts-card__map {
    margin-top: 1.5rem;
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #E2E8F0;
}

.contacts-card__map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 1024px) {

    .contacts-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .contacts-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }


    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contacts-card__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .contacts-card__link--large {
        font-size: 1.5rem;
    }

    .contacts-card__map {
        height: 200px;
    }
}





#reviews.woocommerce-Reviews {
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 1rem auto 0;
}

@media (min-width: 768px) {
    #reviews.woocommerce-Reviews {
        flex-direction: row;
        align-items: flex-start;
    }

    #reviews>#comments {
        flex: 1.2;
    }

    #reviews>#review_form_wrapper {
        flex: 0.8;
        background: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
    }
}


.woocommerce-Reviews-title,
.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-text-main, #333);
    display: block;
}

.woocommerce-noreviews {
    color: var(--color-text-muted, #666);
    font-size: 0.95rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px dashed #ccc;
    text-align: center;
}




.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-main, #333);
}

.comment-form .required {
    color: #e2401c;
}


.comment-form textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
    min-height: 120px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 1px #333;
}


.comment-form .form-submit {
    margin: 0;
}

.comment-form .submit {
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-transform: uppercase;
}

.comment-form .submit:hover {
    background-color: #333;
}

.comment-form .submit:active {
    transform: scale(0.98);
}




.comment-form-rating {
    display: flex;
    flex-direction: column;
}

p.stars {
    margin: 0;
    display: flex;
    gap: 0.25rem;
}

p.stars a {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-indent: -999em;
    overflow: hidden;
    text-decoration: none;
}

p.stars a::before {
    content: "\2605";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 24px;
    text-indent: 0;
    color: #e0e0e0;
    transition: color 0.2s ease;
    text-align: center;
}


p.stars a:hover~a::before {
    color: #e0e0e0 !important;
}

p.stars:hover a::before {
    color: #FFC107 !important;
}

p.stars.selected a.active::before,
p.stars.selected a.active~a::before {
    color: #e0e0e0;
}

p.stars.selected a:not(.active)::before {
    color: #FFC107;
}

p.stars.selected a.active::before {
    color: #FFC107;
}




.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-Reviews .commentlist li.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.woocommerce-Reviews .commentlist li.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.woocommerce-Reviews .commentlist .comment_container {
    display: flex;
    gap: 1.25rem;
}


.woocommerce-Reviews .commentlist .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f0;
}

.woocommerce-Reviews .commentlist .comment-text {
    flex: 1;
}


.woocommerce-Reviews .commentlist .meta {
    font-size: 0.85rem;
    color: var(--color-text-muted, #777);
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-Reviews .commentlist .meta strong {
    color: var(--color-text-main, #111);
    font-size: 1rem;
    font-weight: 600;
}


.woocommerce-Reviews .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1.2em;
    line-height: 1.2em;
    font-size: 1rem;
    width: 5.4em;
    font-family: 'star';
    color: #FFC107;
}

.woocommerce-Reviews .star-rating::before {
    content: '\73\73\73\73\73';
    color: #e0e0e0;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.woocommerce-Reviews .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.woocommerce-Reviews .star-rating span::before {
    content: '\53\53\53\53\53';
    top: 0;
    position: absolute;
    left: 0;
}


.woocommerce-Reviews .commentlist .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.woocommerce-Reviews .commentlist .description p {
    margin-bottom: 0;
}


.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mini-cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}


.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mini-cart-drawer.is-open {
    transform: translateX(0);
}


.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.mini-cart-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.mini-cart-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mini-cart-close:hover {
    color: #111;
    transform: rotate(90deg);
}


.mini-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}


.woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #777;
    margin-top: 2rem;
}


.custom-addon-btn:hover {
    border-color: #999 !important;
    background-color: #fafafa !important;
}


.js-addon-checkbox:checked+.custom-addon-btn {
    border-color: #111 !important;
    background-color: #f4f4f4 !important;
    color: #111 !important;
    font-weight: 600 !important;
    box-shadow: inset 0 0 0 1px #111;
}


.js-addon-checkbox:checked+.custom-addon-btn::before {
    content: '✓ ';
    color: #111;
    font-weight: bold;
}



.mini-cart-content .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.woocommerce-mini-cart.cart_list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-right: 5px;
}

.woocommerce-mini-cart.cart_list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-right: 5px;
}

.woocommerce-mini-cart.cart_list::-webkit-scrollbar {
    width: 4px;
}

.woocommerce-mini-cart.cart_list::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}


.woocommerce-mini-cart-item {
    display: block !important;
    padding: 1.25rem 0 1.25rem 90px !important;
    margin: 0 !important;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    min-height: 115px;
}


.woocommerce-mini-cart-item a>img {
    position: absolute;
    top: 1.25rem;
    left: 0;
    width: 75px !important;
    height: 75px !important;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    margin: 0 !important;
}


.woocommerce-mini-cart-item>a:not(.remove) {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-main, #111);
    text-decoration: none;
    padding-right: 25px;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.woocommerce-mini-cart-item>a:not(.remove):hover {
    color: #555;
}



.woocommerce-mini-cart-item a.remove {
    position: absolute !important;
    top: 1.25rem;
    right: 0;
    width: 24px;
    height: 24px;
    padding: 5px !important;
    border-radius: 50%;
    background: #fff !important;
    color: #999 !important;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;


    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}


.woocommerce-mini-cart-item a.remove:hover {
    background: #ff4d4f !important;
    color: #fff !important;
    border-color: #ff4d4f;
}


.woocommerce-mini-cart-item a.remove svg {
    display: block;
    margin: 0;
}


.woocommerce-mini-cart-item dl.variation {
    font-size: 0.8rem;
    color: #777;
    margin: 0.25rem 0 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.woocommerce-mini-cart-item dl.variation dt {
    font-weight: 600;
    color: #444;
    display: inline;
}

.woocommerce-mini-cart-item dl.variation dd {
    margin: 0;
    display: inline;
}

.woocommerce-mini-cart-item dl.variation p {
    margin: 0;
    display: inline;
}


.woocommerce-mini-cart-item .quantity {
    display: block;
    margin-top: 0.25rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    height: auto;
    color: #555;
}

.woocommerce-mini-cart-item .quantity .amount {
    color: #111;
    font-weight: 600;
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0 !important;
    margin: 0 !important;
    border-top: 2px solid #111;
    background: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.woocommerce-mini-cart__total .amount {
    font-size: 1.2rem;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1rem 0 !important;
    padding-bottom: 1rem;
    background: #fff;
}

.woocommerce-mini-cart__buttons .button {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem !important;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 !important;
}


.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background-color: #f4f4f4 !important;
    color: #333 !important;
    border: 1px solid #ddd;
}

.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
    background-color: #e5e5e5 !important;
    border-color: #ccc;
}


.woocommerce-mini-cart__buttons .button.checkout {
    background-color: #111 !important;
    color: #fff !important;
    border: 1px solid #111;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
    background-color: #333 !important;
}

.catalog-pagination {
    grid-column: 1 / -1;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.catalog-pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-pagination li {
    display: inline-block;
}

.catalog-pagination a,
.catalog-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-btn);
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.catalog-pagination a.page-numbers {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-main);
}

.catalog-pagination a.page-numbers:hover {
    background-color: var(--color-bg-secondary-hover);
    color: var(--color-primary-hover);
}

.catalog-pagination span.current {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    pointer-events: none;
}

.catalog-pagination a.next,
.catalog-pagination a.prev {
    background-color: transparent;
    color: var(--color-primary);
}

.catalog-pagination a.next:hover,
.catalog-pagination a.prev:hover {
    background-color: var(--color-bg-secondary);
}

.btn.btn--dark.catalog__load-more {
    width: max-content;
    border: none;
    margin: auto;
    display: block;
}





.woocommerce-account .woocommerce {
    display: flex;
    flex-direction: column;
    margin: 1rem auto 0;
    max-width: 1400px;
    font-family: var(--font-family-main);
    padding: 1rem 1rem 0;
}

.woocommerce-privacy-policy-text {
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
    }
}



.woocommerce-MyAccount-navigation {
    width: 100%;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-btn);
    padding: 20px;
}

@media (min-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 280px;
        flex-shrink: 0;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}


.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: var(--radius-btn);
    transition: var(--transition-base);
    font-weight: 500;
}


.woocommerce-MyAccount-navigation li:not(.is-active) a:hover {
    background-color: var(--color-bg-secondary-hover);
    color: var(--color-primary);
}


.woocommerce-MyAccount-navigation li.is-active a {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    pointer-events: none;
}



.woocommerce-MyAccount-content {
    flex-grow: 1;
    width: 100%;
    color: var(--color-text-main);
}


.woocommerce-MyAccount-content .woocommerce-Message,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-error {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-main);
    border-left: 4px solid var(--color-primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    margin-bottom: 24px;
}



.woocommerce-MyAccount-content form {
    padding: 0;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-main);
    font-weight: 500;
}


.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-input-placeholder);
    border-radius: var(--radius-input);
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    transition: var(--transition-base);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(10, 45, 77, 0.1);
}


.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    border: none;
    font-weight: 600;
    font-family: var(--font-family-main);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-text-inverse);
}



.woocommerce-checkout .col2-set {
    
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce form .form-row {
    width: 100%;
    margin-bottom: 0;

}


.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: calc(50% - 10px);
}

@media (max-width: 480px) {

    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100%;
    }
}




.woocommerce-checkout h3 {
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--color-bg-secondary);
    padding-bottom: 12px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-main);
}


.woocommerce form .form-row label .required {
    color: var(--color-accent-red);
    text-decoration: none;
    margin-left: 2px;
}


.woocommerce form .form-row label .optional {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 400;
}

.woocommerce form .form-row .select2-container {
    width: 100% !important;
}

.woocommerce form .form-row .select2-container .select2-selection--single {
    height: auto;
    padding: 13px 16px;

    border: 1px solid var(--color-input-placeholder);
    border-radius: var(--radius-input);
    background-color: var(--color-bg-main);
    transition: var(--transition-base);
}


.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 1.4;
    color: var(--color-text-main);
    font-family: var(--font-family-main);
    font-size: 16px;
}


.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 16px;
}


.woocommerce form .form-row .select2-container--focus .select2-selection--single,
.woocommerce form .form-row .select2-container--open .select2-selection--single {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(10, 45, 77, 0.1);
}


.select2-dropdown {
    border-color: var(--color-primary);
    border-radius: 0 0 var(--radius-btn) var(--radius-btn);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    font-family: var(--font-family-main);
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}




.woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600 !important;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);

    margin: 0 !important;
}

.woocommerce .col2-set::before {
    display: none !important;
}

.woocommerce table.shop_table {
    border-collapse: collapse;
    width: 100%;
    border-radius: var(--radius-btn);
    overflow: hidden;
    border: 1px solid var(--color-bg-secondary-hover);
}

.woocommerce table.shop_table th {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-main);
    padding: 16px;
    text-align: left;
}

.woocommerce table.shop_table td {
    padding: 16px;
    border-top: 1px solid var(--color-bg-secondary-hover);
    color: var(--color-text-muted);
}

.woocommerce-info::before {
    position: static;
}

.woocommerce-cart .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    font-family: var(--font-family-main);
}

@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        flex-direction: row;
        align-items: flex-start;
    }

    .woocommerce-cart .woocommerce-cart-form {
        flex: 1 1 65%;
        max-width: 65%;
    }

    .woocommerce-cart .cart-collaterals {
        flex: 1 1 35%;
        max-width: 35%;
        position: sticky;
        top: 30px;
    }
}


.woocommerce table.shop_table.cart {
    width: 100%;
    border-collapse: collapse;
    border: none;
    border-radius: var(--radius-btn);
    overflow: hidden;
}

.woocommerce table.shop_table.cart th {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-main);
    font-weight: 600;
    padding: 16px;
    text-align: left;
    border: none;
}

.woocommerce table.shop_table.cart td {
    padding: 20px 16px;
    border-top: 1px solid var(--color-bg-secondary-hover);
    vertical-align: middle;
}


.woocommerce table.cart .product-thumbnail img {
    width: 80px;
    min-width: 80px;
    height: auto;
    border-radius: var(--radius-btn);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.woocommerce table.cart .product-name a {
    color: var(--color-text-main);
    font-weight: 500;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    transition: var(--transition-base);
}

.woocommerce table.cart .product-name a:hover {
    color: var(--color-primary);
}


.woocommerce table.cart .product-price,
.woocommerce table.cart .product-subtotal {
    color: var(--color-text-main);
    font-weight: 600;
}


.woocommerce table.cart a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--color-accent-red) !important;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition-base);
}

.woocommerce table.cart a.remove:hover {
    background-color: var(--color-accent-red);
    color: var(--color-text-inverse) !important;
}


.woocommerce .quantity input.qty {
    width: 70px;
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-input);
    font-family: var(--font-family-main);
    color: var(--color-text-main);
}

.woocommerce .quantity input.qty:focus {
    border-color: var(--color-primary);
    outline: none;
}


.woocommerce table.cart td.actions {
    padding: 24px 16px;
}

.woocommerce table.cart td.actions .coupon {
    display: flex;
    gap: 10px;
    float: left;
}

.woocommerce table.cart td.actions .coupon input.input-text {
    width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--color-input-placeholder);
    border-radius: var(--radius-input);
}

.woocommerce table.cart td.actions button.button {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-main);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.woocommerce table.cart td.actions button.button:hover {
    background-color: var(--color-bg-secondary-hover);
    color: var(--color-primary);
}


.woocommerce .cart-collaterals .cart_totals {
    background-color: var(--color-bg-secondary);
    padding: 30px;
    border-radius: var(--radius-btn);
    width: 100%;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-bg-secondary-hover);
    padding-bottom: 15px;
}

.woocommerce .cart-collaterals table.shop_table {
    width: 100%;
    border: none;
}

.woocommerce .cart-collaterals table.shop_table th,
.woocommerce .cart-collaterals table.shop_table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-bg-secondary-hover);
    background: transparent;
}

.woocommerce .cart-collaterals table.shop_table tr.order-total th,
.woocommerce .cart-collaterals table.shop_table tr.order-total td {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}


.woocommerce .cart-collaterals .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 16px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition-base);
}

.woocommerce .cart-collaterals .checkout-button:hover {
    background-color: var(--color-primary-hover);
}


.woocommerce-cart .cart-empty {
    background-color: var(--color-bg-secondary);
    padding: 40px;
    border-radius: var(--radius-btn);
    text-align: center;
    font-size: 18px;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.woocommerce-cart .return-to-shop a.button {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    display: inline-block;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background-color: var(--color-primary-hover);
}


:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt {
    background-color: var(--color-primary);
}


.quantity.custom-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-input-placeholder);
    border-radius: var(--radius-input);
    overflow: hidden;
    background: var(--color-bg-main);
    height: 44px;
}


.quantity.custom-quantity .quantity__btn {
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-size: 20px;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.quantity.custom-quantity .quantity__btn:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
}


.quantity.custom-quantity input.qty {
    border: none !important;
    border-radius: 0 !important;
    width: 50px !important;
    height: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 0;
    color: var(--color-text-main);
    font-family: var(--font-family-main);
    font-weight: 500;
    font-size: 16px;
    -moz-appearance: textfield;
}


.quantity.custom-quantity input.qty:focus {
    outline: none;
    box-shadow: none;
}


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




.woocommerce-checkout {
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    margin-top: 40px;
}


ul#shipping_method {
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    width: max-content;
    flex-direction: column;
}


.woocommerce-shipping-totals th {
    vertical-align: top;
    padding-top: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text-main);
}

.woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
}


.woocommerce-shipping-methods input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.woocommerce-shipping-methods label {
    display: flex !important;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius-input);
    cursor: pointer;
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    font-weight: 500;
    transition: var(--transition-base);
    width: 100%;
    box-sizing: border-box;
}


.woocommerce-shipping-methods label:hover {
    background-color: var(--color-bg-main);
    border-color: var(--color-input-placeholder);
}


.woocommerce-shipping-methods label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-input-placeholder);
    border-radius: 50%;
    margin-right: 12px;
    transition: var(--transition-base);
    flex-shrink: 0;
    box-sizing: border-box;
}


.woocommerce-shipping-methods input[type="radio"]:checked+label {
    background-color: var(--color-bg-main);
    border-color: var(--color-primary);
    color: var(--color-primary);
}


.woocommerce-shipping-methods input[type="radio"]:checked+label::before {
    border-color: var(--color-primary);
    background-color: var(--color-primary);

    box-shadow: inset 0 0 0 4px var(--color-bg-main);
}


@media (min-width: 992px) {
    form.checkout.woocommerce-checkout {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        grid-template-rows: max-content 1fr;
        column-gap: 40px;
        row-gap: 20px;
        padding: 0 2rem;
        align-items: start;
    }

    .woocommerce-checkout #customer_details {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .woocommerce-checkout #order_review_heading {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin-top: 0;
        margin-bottom: 0;
    }

    .woocommerce-checkout #order_review {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        position: sticky;
        top: 30px;
    }
}



.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    max-width: 100% !important;
    margin-bottom: 30px;
}


.woocommerce-checkout h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-bg-secondary);
    padding-bottom: 10px;
}


.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-checkout .form-row {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
}


.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: calc(50% - 10px);
}

.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-main);
}


.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.select2-container .select2-selection--single {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-input-placeholder);
    border-radius: var(--radius-input);
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    transition: var(--transition-base);
    height: auto;
    box-sizing: border-box;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 45, 77, 0.1);
}


.select2-container .select2-selection--single {
    height: 50px;
    display: flex;
    align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: var(--color-text-main);
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 12px;
}


#order_review {
    background-color: var(--color-bg-secondary);
    padding: 30px;
    border-radius: var(--radius-btn);
}

.woocommerce-checkout table.shop_table {
    width: 100%;
    table-layout: fixed;

    border-collapse: collapse;
    border: none;
    margin-bottom: 24px;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-bg-secondary-hover);
    text-align: left;
}

.woocommerce-checkout table.shop_table .product-name {
    color: var(--color-text-main);
}

.woocommerce-checkout table.shop_table .product-total,
.woocommerce-checkout table.shop_table .cart-subtotal td,
.woocommerce-checkout table.shop_table .order-total td {
    text-align: right;
    font-weight: 600;
}


.woocommerce-checkout table.shop_table .order-total th,
.woocommerce-checkout table.shop_table .order-total td {
    border-bottom: none;
    font-size: 22px;
    color: var(--color-primary);
    padding-top: 24px;
}

.checkout-product-name-text {
    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}


.woocommerce-checkout table.shop_table td.product-name {
    width: 75%;

}


.woocommerce-checkout table.shop_table td.product-name img {
    margin-right: 15px;
    vertical-align: middle;
}


.woocommerce-checkout #payment {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    list-style: none;
    margin-bottom: 15px;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    color: var(--color-text-main);
    margin-left: 10px;
}


.woocommerce-checkout #payment div.payment_box {
    color: var(--color-text-muted);
    padding: 16px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    margin-top: 10px;
    position: relative;
    border: 1px solid var(--color-bg-secondary-hover);
}

.woocommerce-checkout #payment div.payment_box::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 20px;
    border: 8px solid transparent;
    border-bottom-color: var(--color-bg-main);
}


.woocommerce-checkout #payment #place_order {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
}

.woocommerce-checkout #payment #place_order:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}


.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.woocommerce-terms-and-conditions-wrapper a {
    color: var(--color-primary);
    text-decoration: underline;
}



.woocommerce-checkout table.shop_table td.product-name {
    position: relative;
    padding-left: 80px !important;
}

.woocommerce-checkout table.shop_table .checkout-thumbnail {
    position: absolute;
    left: 0;
    top: 16px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-btn);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-toggle-wishlist {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}


.btn-toggle-wishlist:hover {
    color: var(--color-bg-black);
}


.btn-toggle-wishlist.is-active {
    color: var(--color-bg-black);
}


.btn-toggle-wishlist.is-active svg {
    fill: var(--color-bg-black);
}



.blog-archive {
    padding: 2rem 0;
}

.blog-archive__main-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: #0B2046;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}


.blog-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    background-color: transparent;
    padding: 10px 15px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}


.blog-filter::-webkit-scrollbar {
    display: none;
}

.blog-filter>* {
    flex-shrink: 0;
}

.blog-filter__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background-color: #FAFAFA;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.blog-filter__item--active {
    background-color: #222222 !important;
    color: #ffffff;
}

.blog-filter__item:not(.blog-filter__item--active):hover {
    background-color: #EFEFEF;
}



.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__img-link {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__top {
    gap: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.blog-card__tags {
    border: 1px solid #9CA3AF;
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 12px;
    color: #9CA3AF;
}

.blog-card__tags {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__arrow {
    display: inline-flex;
    color: var(--color-bg-black);
    transition: transform 0.3s ease;
}

.blog-card__arrow svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke-width: 2;
}

.blog-card:hover .blog-card__arrow {
    transform: translate(4px, -4px);
}

.blog-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 0;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}



@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filter__item {
        background-color: #FAFAFA;
        margin-bottom: 8px;
    }
}



.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}


.blog-pagination .screen-reader-text {
    display: none;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}


.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    background-color: #F5F5F5;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.blog-pagination .current {
    background-color: #222222;
    color: #ffffff;
    pointer-events: none;
}


.blog-pagination a.page-numbers:hover {
    background-color: #E0E0E0;
    color: #111111;
    transform: translateY(-2px);
}


.blog-pagination .dots {
    background-color: transparent;
    color: #888888;
    min-width: auto;
    padding: 0 4px;
    pointer-events: none;
}


.blog-pagination .prev,
.blog-pagination .next {
    font-weight: bold;
    font-size: 18px;
}



.single-post {
    background-color: #ffffff;
}


.single-post__container {
    max-width: 800px;
    margin: 0 auto;
}


.single-post__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 0;
}

.single-post__back {
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-post__back:hover {
    color: #111827;
}

.single-post__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #6B7280;
}

.single-post__categories a {
    color: #D36B58;
    text-decoration: none;
    font-weight: 600;
}


.single-post__title {
    font-size: clamp(28px, 4vw, 46px);
    color: #0B2046;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}


.single-post__thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}



.single-post__content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.single-post__content p {
    margin-bottom: 24px;
}


.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    color: #111827;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.single-post__content h2 {
    font-size: 28px;
}

.single-post__content h3 {
    font-size: 24px;
}


.single-post__content ul,
.single-post__content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.single-post__content li {
    margin-bottom: 10px;
}


.single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}


.single-post__content blockquote {
    border-left: 4px solid #D36B58;
    margin: 40px 0;
    padding: 15px 20px;
    background-color: #F9FAFB;
    font-style: italic;
    color: #4B5563;
    border-radius: 0 8px 8px 0;
}



.single-post__navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
}

.single-post__navigation a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    max-width: 300px;
    line-height: 1.4;
}

.single-post__navigation a:hover {
    color: #D36B58;
}

.single-post__nav-next {
    text-align: right;
}



@media (max-width: 576px) {
    .single-post__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .single-post__navigation {
        flex-direction: column;
        gap: 24px;
    }

    .single-post__nav-next {
        text-align: left;
    }
}


.woocommerce div.product form.cart table.variations select {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    width: 1px !important;
    height: 1px !important;
}

.woocommerce div.product form.cart table.variations,
.woocommerce div.product form.cart table.variations tbody,
.woocommerce div.product form.cart table.variations tr,
.woocommerce div.product form.cart table.variations td {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    text-align: left;
}


.woocommerce div.product form.cart table.variations td.label {
    margin-bottom: 12px;
    margin-top: 20px;
    padding: 0;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 15px 30px !important;
}

.woocommerce div.product form.cart table.variations td.label label {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}


.woocommerce div.product form.cart table.variations td.value {
    margin-bottom: 20px;
}


.custom-swatches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}


.custom-swatch-btn {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    color: #374151;
    background: #ffffff;
    transition: all 0.2s ease;
    position: relative;
}


.custom-swatch-btn:hover {
    border-color: #9CA3AF;
    background: #F9FAFB;
}


.custom-swatch-btn.active {
    border-color: #000000;
    border-width: 2px;
    font-weight: 600;
    color: #000000;
    padding: 13px 15px;
}


.custom-swatch-btn.active::before {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}


.variations_form table.variations select,
.variations_form a.reset_variations {
    display: none !important;
}


.variations_form table.variations {
    width: 100%;
    border-spacing: 0;
}

.variations_form table.variations tbody tr {
    display: flex;
    flex-direction: column;
}

.variations_form table.variations th.label {
    text-align: left;
    padding: 0 0 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.variations_form table.variations td.value {
    padding: 0;
}



table.variations select {
    display: none !important;
}


.var-custom-select {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
    user-select: none;
}


.var-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.var-custom-select__trigger:hover {
    background: #f9f9f9;
}


.var-custom-select__arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
}


.var-custom-select.is-open .var-custom-select__arrow {
    transform: rotate(-135deg) translateY(-2px);
}

.var-custom-select.is-open .var-custom-select__trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.var-custom-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #000000;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 250px;
    overflow-y: auto;
}


.var-custom-select.is-open .var-custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.var-custom-select__option {
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: background 0.2s;
}

.var-custom-select__option:hover {
    background: #f3f4f6;
    color: #000000;
}


.var-custom-select__option.is-selected {
    font-weight: bold;
    background: #f9f9f9;
    color: #000000;
}


.woocommerce-variation-add-to-cart,
.product__actions-wrapper .cart {
    display: flex;
    align-items: stretch;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.product__actions-wrapper .cart.variations_form {
    flex-direction: column;
}


.product__actions-wrapper .quantity.custom-quantity {
    display: flex;
    height: auto;
    align-items: center;
    border: 1px solid #00000040;
    border-radius: 8px 0 0 8px;
    background: #fff;
    min-width: 120px;
    justify-content: space-between;
    box-sizing: border-box;
}

.woocommerce-variation-add-to-cart-enabled .quantity.custom-quantity {
    border: 1px solid #000;
}


.custom-delivery-banner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
}


.custom-delivery-banner .delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

 .delivery-text > p {
    margin-bottom: 1rem;
}

 .delivery-text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

 .delivery-text strong {
    white-space: nowrap;
    font-size: 15px;
    color: #000;
}

.quantity.custom-quantity .quantity__btn {
    background: transparent;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity.custom-quantity .quantity__input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: transparent;
    -moz-appearance: textfield;
}

.quantity.custom-quantity .quantity__input::-webkit-outer-spin-button,
.quantity.custom-quantity .quantity__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.single_add_to_cart_button {
    flex-grow: 1;
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px !important;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    background-color: #333 !important;
}


.woocommerce-variation-price {
    display: none;
}

.custom-ig-feed-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.instagram-section-title {
    text-transform: uppercase;
    font-weight: 100;
    margin: 2rem 0;
}


.custom-ig-feed-wrapper #sb_instagram .sbi_item {
    width: calc(100% / 6) !important;
    padding: 1px !important;
    box-sizing: border-box;
}


@media (max-width: 992px) {
    .custom-ig-feed-wrapper #sb_instagram .sbi_item {
        width: calc(100% / 3) !important;
    }
}


@media (max-width: 576px) {
    .custom-ig-feed-wrapper #sb_instagram .sbi_item {
        width: calc(100% / 2) !important;
    }
}


.custom-video-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}


.custom-video-grid .custom-video-item {
    width: calc(100% / 5);
    box-sizing: border-box;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
    background: #000;
}

.custom-video-item {
    border-radius: 12px;
    overflow: hidden;
}

.custom-video-item video {
    border-radius: 12px;
}

.page-backgraund-text {
    position: absolute;

    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1400px;
    width: 100vw;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.page-backgraund-text h1 {
    position: absolute;
    top: 110vw;
    left: 0;
    margin: 0;
    transform: translateX(-45%) translateY(-50%) rotate(-90deg);
    font-size: 300px;
    font-weight: 900;
    font-family: var(--font-family-main);
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.10);
}





.custom-slider-wrapper {
    position: relative;
    width: 100%;
}

.custom-video-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.custom-video-track::-webkit-scrollbar {
    display: none;
}

.custom-video-track:active {
    cursor: grabbing;
}


.custom-video-item {
    flex: 0 0 calc(20% - 12px);
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    box-sizing: border-box;
}

.custom-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: auto;
}


.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;


    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}


.custom-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}


.custom-video-item.is-paused .custom-play-btn {
    opacity: 1;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}


@media (max-width: 992px) {
    .custom-video-item {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 576px) {
    .custom-video-item {
        flex: 0 0 calc(50% - 7.5px);
    }

    .slider-btn {
        display: none;
    }
}

.woocommerce-Price-amount bdi {
    white-space: nowrap !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1400px;
    margin: auto;
}

.woocommerce-info {
    margin: 0 !important;
}


.header__lang {
    margin: 0;
    padding: 0;
}

.custom-lang {
    position: relative;
    display: inline-block;
    user-select: none;
}

.custom-lang__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-lang__trigger:hover {
    background: #f9f9f9;
}

.custom-lang__arrow {
    transition: transform 0.3s ease;
}

.custom-lang.is-open .custom-lang__arrow {
    transform: rotate(180deg);
}

.custom-lang__dropdown {
    position: absolute;
    z-index: 5;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 100%;
    background: #ffffff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.custom-lang.is-open .custom-lang__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Тепер це посилання (тег <a>), тому додаємо text-decoration: none */
a.custom-lang__option {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
    display: block;
}

a.custom-lang__option:hover {
    background: #f3f4f6;
}

a.custom-lang__option:first-child {
    border-radius: 6px 6px 0 0;
}

a.custom-lang__option:last-child {
    border-radius: 0 0 6px 6px;
}
a.custom-lang__option.is-active {
    background: #f3f4f6; /* Сірий фон */
    color: #9ca3af; /* Світліший сірий текст, щоб виглядало неактивним */
    cursor: default; /* Звичайний курсор замість "руки" */
    pointer-events: none; /* Повністю забороняє клікати на цей елемент */
}

.trp-floating-switcher {
    display: none !important;
}

.product__price-block {
    display: inline-flex;
    align-items: baseline;
}



.product__price-block .screen-reader-text {
    display: none;
}


.product__price-block .amount {
    color: #000000;
    font-weight: 700;
    font-size: 24px;
}




.woocommerce-message {
    display: none !important;
}

.wp-default-content {
    
    max-width: 860px;
    margin: 0 auto;
    
    
    padding: 48px;
    background-color: var(--color-bg-main);
    border-radius: var(--radius-input);
    box-shadow: 0 4px 24px rgba(10, 45, 77, 0.04); 
    
    
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    font-size: 16px;
    line-height: 1.7; 
}


.wp-default-content p {
    margin-bottom: 1.5rem;
}

.wp-default-content p:last-child {
    margin-bottom: 0;
}


.wp-default-content strong {
    color: var(--color-primary); 
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.2px;
}


.wp-default-content br + strong {
    display: inline-block;
    margin-top: 1.5rem;
}


.wp-default-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(10, 45, 77, 0.3);
    text-underline-offset: 4px;
    transition: color var(--transition-base), text-decoration-color var(--transition-base);
}

.wp-default-content a:hover {
    color: var(--color-primary-hover);
    text-decoration-color: var(--color-primary-hover);
}

.wp-default-content h1,
.wp-default-content h2,
.wp-default-content h3,
.wp-default-content h4 {
    color: var(--color-primary);
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 600;
    line-height: 1.3;
}

.wp-default-content ul,
.wp-default-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.wp-default-content li {
    margin-bottom: 0.5rem;
}


@media (max-width: 768px) {
    .wp-default-content {
        padding: 24px 16px;
        font-size: 15px; 
        border-radius: var(--radius-btn);
        box-shadow: none; 
        border: 1px solid var(--color-bg-secondary);
    }
}

.gift-impression {     
    padding: 20px 0;
}


.gift-impression__title {
    font-family: var(--font-family-main);
    font-size: 2.5rem; 
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 48px;
    text-align: left;
}




.gift-impression__text {
    column-count: 2;         
    column-gap: 60px;        
    
    font-family: var(--font-family-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main, #333);
}


.gift-impression__text p {
    margin-top: 0;
    margin-bottom: 24px;
    
    
    break-inside: avoid;
    page-break-inside: avoid; 
}

.gift-impression__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gift-impression__title {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    
    .gift-impression__text {
        column-gap: 40px;
    }
}

@media (max-width: 768px) {
    .gift-impression {
        padding: 15px 0;
    }

    .gift-impression__title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
    
    .gift-impression__text {
        column-count: 1; 
    }
} 
/* Однакова типографіка у вкладках Оплата / Доставка / Повернення */

.info-tabs__panel .info-panel__content {
    font-size: 16px;
    line-height: 1.55;
}

.info-tabs__panel .info-panel__content p,
.info-tabs__panel .info-panel__content li,
.info-tabs__panel .payment-text p,
.info-tabs__panel .delivery-text p,
.info-tabs__panel .return-text p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    font-weight: 400;
}

.info-tabs__panel .info-panel__content h3,
.info-tabs__panel .payment-text h3,
.info-tabs__panel .delivery-text h3,
.info-tabs__panel .return-text h3 {
    margin: 22px 0 8px !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700;
}

.info-tabs__panel .info-panel__content h2,
.info-tabs__panel .info-panel__title {
    margin-bottom: 28px;
    font-size: 40px !important;
    line-height: 1.15;
    font-weight: 500;
}
.product-card__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1 !important;
}

.product-card__btn-icon {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
    flex: 0 0 17px !important;
    margin: 0 !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: translateY(1px);
}