
:root {
    --primary-color: #ff9fe7;
    --secondary-color: #000000;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-size: 16px;
    --line-height: 1.5;
}

body {
    color:#000;
}

/* swiper fix */
@media(max-width:768px){
    .container {
        max-width: 100vw;
    }
}
.swiper-container {
    overflow: hidden;
}
.wrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
}
main {
    padding-top: 72px;
}
body.admin-bar main {
    padding-top: 112px;
}
body.admin-bar .header {
    top: 32px;
}
.header {
    top: 0;
    z-index: 1000;
    background-color: transparent;
    left:0;
    right:0;
    padding: 16px 0px;
    position: fixed;
    transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header__brand-nav {
    display: flex;
    align-items: center;
    min-width: 0;
}
.header.scrolled {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

body:not(.home) .header,
body.mobile-menu-open .header,
body.search-overlay-open .header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header__logo {
    font-size: clamp(28px, 2.35vw, 34px);
    font-weight: 900;
    color: #000!important;
    letter-spacing: -0.045em;
    text-decoration: none;
    line-height: 0.96;
}
.header__nav {
    margin-left: 32px;
}
@media(max-width: 768px) {
    .header {
        position: fixed;
    }
}

.header__nav ul {
    list-style: none;
    margin: 0;
    display: flex;
    line-height: 1.2;
    padding: 0;
}
.header__nav ul li{
    margin-right: 24px;
    position: relative;
}
.header__nav ul li a {
    border-bottom: 2px solid transparent;
    padding: 6px 0px;
    display: inline-block;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    transition: border-color 0.2s ease;
}
.header__nav ul li a:hover {
    border-bottom: 2px solid #000;
}

/* Dropdown menu styles */
.header__nav .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.header__nav .menu-item-has-children:hover > .sub-menu,
.header__nav .menu-item-has-children:focus-within > .sub-menu,
.header__nav .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

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

.header__nav .sub-menu li a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.2s ease, color 0.2s ease;
    
}

.header__nav .sub-menu li a:hover {
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
}

/* Arrow indicator for items with children */
.header__nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000;
    vertical-align: middle;
}

/* Multi-level support */
.header__nav .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 8px;
}

.header__nav .sub-menu .menu-item-has-children:hover > .sub-menu {
    display: flex;
}

.header__submenu-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: #000;
    cursor: pointer;
    display: none;
    height: 44px;
    position: absolute;
    right: 0;
    top: 6px;
    width: 44px;
}

.header__submenu-toggle::before {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    display: block;
    height: 10px;
    margin: auto;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    width: 10px;
}

.header__nav .menu-item-has-children.is-open > .header__submenu-toggle::before {
    transform: rotate(225deg);
}

@media(max-width: 768px) {
    .header {
        background: transparent;
        border-bottom: 1px solid transparent;
        padding: 9px 0;
        z-index: 10001;
    }

    body:not(.home) .header {
        background: transparent;
        border-bottom-color: transparent;
    }

    .header.scrolled,
    body:not(.home) .header.scrolled,
    body.mobile-menu-open .header,
    body.search-overlay-open .header {
        background: #fff;
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }

    main {
        padding-top: 62px;
    }

    body.admin-bar main {
        padding-top: 108px;
    }

    .header__inner {
        gap: 10px;
    }

    .header__brand-nav {
        flex: 1 1 auto;
        min-width: 0;
    }

    .header__logo {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header__nav {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100dvh - 62px);
        background: #fff;
        display: block;
        margin-left: 0;
        opacity: 0;
        overflow-y: auto;
        padding: 18px 22px 32px;
        pointer-events: none;
        transform: translateX(calc(100% + 28px));
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
        visibility: hidden;
        z-index: 10000;
    }

    body.admin-bar .header__nav {
        top: 108px;
        height: calc(100dvh - 108px);
    }

    body.mobile-menu-open .header__nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s;
        visibility: visible;
    }

    .header__nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .header__nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin-right: 0;
        margin-bottom: 0;
        padding-right: 52px;
    }

    .header__nav ul li a {
        border-bottom: 0;
        display: block;
        font-size: clamp(28px, 8vw, 42px);
        font-weight: 900;
        letter-spacing: -0.055em;
        line-height: 1;
        padding: 17px 0;
    }

    .header__nav .menu-item-has-children > a::after {
        display: none;
    }

    .header__submenu-toggle {
        display: inline-flex;
    }
    
    .header__nav .sub-menu {
        background: transparent;
        box-shadow: none;
        display: block;
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        padding-left: 0;
        position: static;
        transform: none;
        transition: max-height 0.24s ease, padding-bottom 0.24s ease;
    }
    
    .header__nav .menu-item-has-children > .sub-menu {
        display: block;
    }
    
    .header__nav .menu-item-has-children.is-open > .sub-menu {
        max-height: 480px;
        padding-bottom: 14px;
    }
    
    .header__nav .sub-menu .sub-menu {
        left: auto;
        margin-left: 0;
    }

    .header__nav .sub-menu li {
        border-bottom: 0;
        padding-right: 0;
    }

    .header__nav .sub-menu li a {
        border-bottom: 0;
        color: rgba(0, 0, 0, 0.66);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: -0.02em;
        padding: 8px 0;
        visibility: hidden;
    }

    .header__nav .menu-item-has-children.is-open > .sub-menu li a {
        visibility: visible;
    }

    .header__actions {
        gap: 2px;
    }

    .header__menu-toggle {
        display: inline-flex;
    }
}

.header__search-toggle,
.header__menu-toggle,
.header__cart-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__search-toggle,
.header__menu-toggle,
.header__cart-toggle {
    border-radius: 999px;
    height: 44px;
    width: 44px;
}

.header__search-toggle:hover,
.header__menu-toggle:hover,
.header__cart-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
}

.header__search-toggle svg {
    height: 22px;
    width: 22px;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.header__menu-toggle span {
    background: #000;
    display: block;
    height: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 22px;
}

body.mobile-menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__cart-toggle .count {
    align-items: center;
    background: var(--primary-color);
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    height: 18px;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
    padding: 0 4px;
    position: absolute;
    right: 0;
    top: 0;
}

.header__cart-toggle svg {
    height: 24px;
    width: 24px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.header__logo:focus-visible,
.header__nav a:focus-visible,
.header__search-toggle:focus-visible,
.header__menu-toggle:focus-visible,
.header__cart-toggle:focus-visible,
.header__submenu-toggle:focus-visible,
.product-search input[type="search"]:focus-visible,
.product-search button:focus-visible,
.search-overlay__close:focus-visible {
    outline: 2px solid #000;
    outline-offset: 4px;
}

@media(max-width: 768px) {
    .header__menu-toggle {
        display: inline-flex;
    }
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.product-search {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.product-search input[type="search"] {
    appearance: none;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px 0 0 8px;
    color: #000;
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.2;
    min-width: 0;
    padding: 11px 14px;
}

.product-search input[type="search"]::placeholder {
    color: rgba(0, 0, 0, 0.52);
}

.product-search button {
    background: #000;
    border: 2px solid #000;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-search button:hover {
    background: #fff;
    color: #000;
}

.product-search--header {
    width: min(30vw, 340px);
}

.product-search--hero,
.product-search--modal,
.product-search--empty {
    max-width: 620px;
}

.search-overlay-open {
    overflow: hidden;
}

.search-overlay {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.22s ease;
    z-index: 10000;
}

.search-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__backdrop {
    appearance: none;
    background: rgba(0, 0, 0, 0.58);
    border: 0;
    cursor: pointer;
    inset: 0;
    position: absolute;
}

.search-overlay__panel {
    background: #fff;
    border: 2px solid #000;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
    left: 50%;
    max-width: min(760px, calc(100vw - 28px));
    padding: clamp(26px, 5vw, 52px);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -46%);
    transition: transform 0.22s ease;
    width: 100%;
}

.search-overlay.is-active .search-overlay__panel {
    transform: translate(-50%, -50%);
}

.search-overlay__close {
    appearance: none;
    align-items: center;
    background: #000;
    border: 2px solid #000;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 3px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
}

.search-overlay__close:hover {
    background: #fff;
    color: #000;
}

.search-overlay__eyebrow {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.search-overlay__panel h2 {
    color: #000;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
    margin: 0 52px 16px 0;
}

.search-overlay__panel p:not(.search-overlay__eyebrow) {
    color: rgba(0, 0, 0, 0.66);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.45;
    margin: 0 0 26px;
    max-width: 620px;
}

@media(max-width: 991px) {
    .header__inner {
        align-items: center;
        gap: 12px 16px;
    }

    .header__actions {
        flex: 0 0 auto;
        width: auto;
    }

    .header__cart-toggle {
        flex: 0 0 auto;
    }
}

@media(max-width: 640px) {
    .header__logo {
        font-size: 28px;
    }

    .product-search input[type="search"] {
        font-size: 14px;
        padding: 10px 12px;
    }

    .product-search button {
        padding: 0 13px;
    }

    .search-overlay__panel {
        bottom: 12px;
        left: 12px;
        max-width: none;
        top: auto;
        transform: translateY(16px);
        width: calc(100vw - 24px);
    }

    .search-overlay.is-active .search-overlay__panel {
        transform: translateY(0);
    }

    .search-overlay__panel h2 {
        margin-right: 44px;
    }
}


.home__hero {
    height: 500px;
    min-height: 70vh;
    margin-bottom: 40px;
    background: var(--primary-color);
}
.home main{
    padding-top:0!important;
}

.homepage-editorial {
    background: #fffafc;
    color: #0d0d0d;
    overflow: hidden;
}

.homepage-hero {
    padding: clamp(104px, 9vw, 138px) 0 clamp(58px, 6vw, 82px);
    min-height: 80vh;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 159, 231, 0.42), transparent 30%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 46%, #f4f1ec 100%);
}

.homepage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: clamp(32px, 5vw, 76px);
}

.homepage-hero__content h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(46px, 7vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.052em;
    font-weight: 800;
}

.homepage-eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6f5c67;
    font-weight: 700;
}

.homepage-hero__text {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.48;
    color: #333;
}

.homepage-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.homepage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 2px solid #111;
    border-radius: 6px;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.homepage-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.homepage-btn--dark {
    background: #111;
    color: #fff;
}

.homepage-btn--dark:hover {
    color: #fff;
}

.homepage-btn--ghost {
    background: rgba(255, 255, 255, 0.5);
}

.homepage-btn--ghost:hover {
    background: #fff;
    color: #111;
}

.homepage-btn--light {
    background: #fff;
    color: #111;
}

.homepage-hero__proof {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.homepage-hero__proof span {
    border: 1px solid rgba(17, 17, 17, 0.16);
    background: rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
}

.homepage-hero__media {
    position: relative;
    min-height: clamp(430px, 42vw, 590px);
    overflow: visible;
    background: transparent;
    isolation: isolate;
}

.homepage-hero__media::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 22px;
    z-index: 0;
    border: 2px solid #111;
    border-radius: 24px;
    background: rgba(255, 159, 231, 0.16);
}

.homepage-hero__media::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 34px;
    z-index: 0;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: #111;
    opacity: 0.07;
}

.homepage-hero__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: clamp(430px, 42vw, 590px);
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 28px 74px rgba(54, 25, 41, 0.2);
}

.homepage-hero__badge {
    position: absolute;
    right: -12px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 6px;
    max-width: 300px;
    padding: 18px 20px;
    border: 2px solid #111;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16);
    color: #111;
}

.homepage-hero__badge strong {
    font-size: 15px;
    line-height: 1.2;
}

.homepage-hero__badge span {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

.homepage-section {
    padding: clamp(58px, 7vw, 104px) 0;
}

.homepage-section__head {
    max-width: 700px;
    margin-bottom: clamp(28px, 3.2vw, 42px);
}

.homepage-section__head h2,
.homepage-flow h2,
.homepage-trust h2,
.homepage-final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1.03;
    letter-spacing: -0.044em;
    font-weight: 800;
}

.homepage-section__head--inline {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.homepage-link {
    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.homepage-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.homepage-category-card {
    position: relative;
    display: block;
    min-height: clamp(260px, 38vw, 520px);
    overflow: hidden;
    border-radius: 18px;
    background: #151515;
    color: #fff;
}

.homepage-category-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.homepage-category-card:hover img {
    transform: scale(1.04);
}

.homepage-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.64) 100%);
}

.homepage-category-card__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
}

.homepage-category-card__content strong {
    color: #fff;
    font-size: clamp(25px, 2.8vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.034em;
}

.homepage-category-card__content small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.homepage-flow {
    background: #111;
    color: #fff;
}

.homepage-flow .homepage-eyebrow {
    color: #ffb8ed;
}

.homepage-flow__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(32px, 6vw, 84px);
}

.homepage-flow__steps {
    display: grid;
    gap: 12px;
}

.homepage-flow-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    align-items: start;
}

.homepage-flow-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.homepage-flow-step span {
    color: #ff9fe7;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.08em;
    grid-row: 1 / span 2;
}

.homepage-flow-step h3 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    grid-column: 2;
}

.homepage-flow-step p {
    margin: 0;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
    grid-column: 2;
}

.homepage-trust {
    background: #fff;
}

.homepage-trust__card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
    padding: clamp(26px, 5vw, 56px);
    border: 2px solid #111;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 159, 231, 0.18), rgba(255, 255, 255, 0) 42%),
        #fff;
}

.homepage-trust__card p {
    margin: 0;
    color: #303030;
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.48;
}

.homepage-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.homepage-product-grid .product-card .image-link {
    aspect-ratio: 4 / 5;
    display: block;
}

.homepage-product-grid .product-card .image-link img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    min-width: 0;
    width: 100%;
}

.homepage-products {
    background: #fffafc;
}

.homepage-family {
    background: #fff;
}

.homepage-final-cta {
    padding: clamp(64px, 8vw, 116px) 0;
    background: #111;
    color: #fff;
}

.homepage-final-cta__inner {
    max-width: 850px;
}

.homepage-final-cta__inner p {
    margin: 20px 0 30px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .homepage-hero {
        min-height: auto;
        padding-top: 104px;
    }

    .homepage-hero__grid,
    .homepage-flow__grid,
    .homepage-trust__card {
        grid-template-columns: 1fr;
    }

    .homepage-hero__media {
        min-height: 440px;
    }

    .homepage-hero__media img {
        min-height: 440px;
    }

    .homepage-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .homepage-hero {
        padding: 90px 0 46px;
    }

    .homepage-hero__content h1 {
        font-size: clamp(40px, 12.5vw, 58px);
        line-height: 0.98;
        letter-spacing: -0.044em;
    }

    .homepage-section__head h2,
    .homepage-flow h2,
    .homepage-trust h2,
    .homepage-final-cta h2 {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1.05;
        letter-spacing: -0.038em;
    }

    .homepage-hero__actions,
    .homepage-section__head--inline {
        align-items: stretch;
        flex-direction: column;
    }

    .homepage-btn {
        width: 100%;
    }

    .homepage-hero__media,
    .homepage-hero__media img {
        min-height: 360px;
    }

    .homepage-hero__media::before,
    .homepage-hero__media::after {
        display: none;
    }

    .homepage-hero__media img {
        border-radius: 18px;
    }

    .homepage-hero__badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 14px 16px;
    }

    .homepage-category-grid,
    .homepage-product-grid {
        grid-template-columns: 1fr;
    }

    .homepage-flow-step {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }

    .homepage-flow-step span,
    .homepage-flow-step h3,
    .homepage-flow-step p {
        grid-column: auto;
        grid-row: auto;
    }

    .homepage-flow-step span {
        font-size: 13px;
    }

    .homepage-trust__card {
        padding: 22px;
    }
}


.single-product__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.single-product__images img {
    min-width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}

.single-product__images .image-item{

}

.single-product__right {
}



.product-card {
    display: block;
}
.product-card .image-link {
    overflow: hidden;
    position: relative;
    background-color: #e7e7e7;
}
.product-card .image-link img {
    aspect-ratio: 1/1.4;
    object-fit: cover;
    display: block;
    min-width: 100%;
    position: relative;
}
.product-card .image-link .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card .image-link:hover .hover-image {
    opacity: 1;
}   
.product-card .card-body {
    padding: 12px 0 0;
}
.product-card .card-body a {
    color: inherit;
    text-decoration: none;
}
.product-card__title {
    color: #000;
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.16;
    margin: 0 0 6px;
}
.product-card__price {
    font-size: 16px;
    color: #424242;
    margin-bottom: 8px;
    
}
.woocommerce-Price-currencySymbol {
    font-weight: normal;
    text-decoration: none!important;
    border-bottom: none!important;
}



.form-check-label .radio-dummy {
    border: 2px solid #000;
    display: inline-flex;  
    padding: 3px 12px;
    min-width: 42px;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.form-check-input {
    display: none;
}
.form-check-input:checked + .radio-dummy {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color:#fff;
}


/* CATALOG */
.catalog-page {
    padding: clamp(34px, 6vw, 82px) 0 clamp(54px, 8vw, 110px);
}

.catalog-hero {
    align-items: end;
    border-bottom: 2px solid #000;
    display: grid;
    gap: clamp(26px, 5vw, 72px);
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    margin-bottom: clamp(28px, 5vw, 58px);
    padding-bottom: clamp(26px, 4vw, 46px);
}

.catalog-hero--compact {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
}

.catalog-hero__eyebrow,
.catalog-empty__eyebrow {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.catalog-hero h1 {
    color: #000;
    font-size: clamp(48px, 8vw, 116px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.94;
    margin: 0;
}

.catalog-hero p,
.catalog-hero__description {
    color: rgba(0, 0, 0, 0.68);
    font-size: clamp(17px, 1.65vw, 22px);
    line-height: 1.42;
    margin: 22px 0 0;
    max-width: 760px;
}

.catalog-hero__description p {
    margin: 0 0 12px;
}

.catalog-hero__tools {
    display: grid;
    gap: 18px;
}

.catalog-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-category-chip {
    align-items: center;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    color: #000;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    line-height: 1;
    padding: 10px 14px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.catalog-category-chip small {
    color: currentColor;
    font-size: 11px;
    font-weight: 800;
    opacity: 0.56;
}

.catalog-category-chip:hover,
.catalog-category-chip.is-active {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.catalog-subcategory-block {
    background: #fff3fb;
    border: 2px solid #000;
    border-radius: 18px;
    margin-bottom: clamp(24px, 4vw, 44px);
    padding: clamp(18px, 3vw, 28px);
}

.catalog-subcategory-block h2 {
    font-size: clamp(22px, 2.7vw, 36px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 16px;
}

.catalog-toolbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.catalog-toolbar p {
    color: rgba(0, 0, 0, 0.62);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0;
    text-transform: uppercase;
}

.catalog-layout {
    display: grid;
    gap: clamp(22px, 4vw, 42px);
}

.catalog-layout.has-sidebar {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.catalog-filter-panel {
    align-self: start;
    background: #fff;
    border: 2px solid #000;
    border-radius: 18px;
    padding: 18px;
    position: sticky;
    top: 100px;
}

.catalog-filter-panel h2 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0 0 16px;
}

.catalog-empty {
    background: #fff3fb;
    border: 2px solid #000;
    border-radius: 22px;
    margin: 28px 0 0;
    max-width: 760px;
    padding: clamp(26px, 5vw, 48px);
}

.catalog-empty h2 {
    color: #000;
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin: 0 0 16px;
}

.catalog-empty p {
    color: rgba(0, 0, 0, 0.68);
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 22px;
}

.catalog-empty__button {
    align-items: center;
    background: #000;
    border: 2px solid #000;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    text-decoration: none;
}

.catalog-empty__button:hover {
    background: #fff;
    color: #000;
}





/* CART */
.cart__fader {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.45);
    display: none;
    z-index: 10018;
    backdrop-filter: blur(2px);
}

.cart__fader.active {
    display: block;
}

.cart__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100vw);
    height: 100dvh;
    background: #ffffff;
    color: #111111;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.22);
    z-index: 10019;
    transform: translateX(102%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
}

.cart__wrapper.active {
    transform: translateX(0);
}

.cart__header {
    padding: 18px 18px 14px;
    border-bottom: 1px solid #ececec;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.cart__eyebrow {
    margin: 0 0 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8f8f8f;
}

.cart__header h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.cart__close {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    color: #111;
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-text-fill-color: #111;
    transition: all 0.2s ease;
}

.cart__close:hover,
.cart__close:focus-visible {
    background: #111;
    border-color: #111;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 16px;
}

.cart__item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
}

.cart__item:last-child {
    border-bottom: none;
}

.cart__item-image img {
    width: 88px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    background: #f2f2f2;
}

.cart__item-name {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.cart__item-name a {
    color: #131313;
    text-decoration: none;
}

.cart__item-meta p {
    margin: 0;
    font-size: 12px;
    color: #686868;
    line-height: 1.45;
}

.cart__item-bottom {
    margin-top: 8px;
}

.cart__item-price {
    font-size: 15px;
    font-weight: 700;
}

.cart__item-remove .remove {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #dadada;
    border-radius: 50%;
    color: #4e4e4e;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.cart__item-remove .remove:hover {
    background: #111;
    border-color: #111;
    color: #fff !important;
}

.cart__empty-state {
    border: 1px dashed #d6d6d6;
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    margin-top: 10px;
}

.cart__empty-state h6 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
}

.cart__empty-state p {
    margin: 0 0 16px;
    color: #666;
    font-size: 13px;
}

.cart__footer {
    border-top: 1px solid #ececec;
    padding: 14px 14px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.cart__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.cart__subtotal span:first-child {
    font-size: 13px;
    color: #6d6d6d;
}

.cart__subtotal-value {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
}

.cart__actions {
    display: grid;
    gap: 8px;
}

.cart__actions .btn,
.cart__empty-state .btn {
    -webkit-appearance: none;
    appearance: none;
    align-items: center;
    border-radius: 12px;
    border-width: 2px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: -0.01em;
    min-height: 50px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart__actions .btn:hover,
.cart__empty-state .btn:hover {
    transform: translateY(-1px);
}

.cart__actions .btn-dark,
.cart__empty-state .btn-dark {
    background: #000;
    border-color: #000;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.cart__actions .btn-dark:hover,
.cart__empty-state .btn-dark:hover,
.cart__actions .btn-dark:focus-visible,
.cart__empty-state .btn-dark:focus-visible {
    background: #fff;
    color: #000;
    -webkit-text-fill-color: #000;
}

.cart__actions .btn-outline-dark {
    background: #fff;
    border-color: #000;
    color: #000;
    -webkit-text-fill-color: #000;
}

.cart__actions .btn-outline-dark:hover,
.cart__actions .btn-outline-dark:focus-visible {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.woocommerce-cart .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button.button {
    -webkit-appearance: none;
    appearance: none;
    align-items: center;
    border: 2px solid #000;
    border-radius: 12px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: -0.01em;
    min-height: 50px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart a.checkout-button.button:hover {
    transform: translateY(-1px);
}

.woocommerce-cart .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button.button {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart a.checkout-button.button:hover {
    background: #fff;
    color: #000;
    -webkit-text-fill-color: #000;
}

.woocommerce-cart .actions .button[name="update_cart"],
.woocommerce-cart .actions .coupon .button {
    background: #fff;
    color: #000;
    -webkit-text-fill-color: #000;
}

.woocommerce-cart .actions .button[name="update_cart"]:hover,
.woocommerce-cart .actions .coupon .button:hover {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.zefirka-rental-days-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 40px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #f7f7f7;
    color: #222;
    font-weight: 600;
}

.rental-range-picker {
    display: none;
}

.rental-range-enhanced .rental-range-picker {
    display: block;
}

.rental-range-enhanced .rental-range-fallback {
    display: none;
}

.rental-date-range {
    cursor: pointer;
    background-color: #fff;
}

.rental-range-picker .flatpickr-input,
.rental-range-picker .flatpickr-input[readonly] {
    background-color: #fff;
    color: #111;
    border: 2px solid #111;
    border-radius: 6px;
    min-height: 50px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 16px;
    box-shadow: none;
    opacity: 1;
}

.rental-range-picker input.rental-date-range,
.rental-range-picker input.rental-date-range[readonly],
.rental-range-picker input.rental-date-range.input,
.rental-range-picker input.rental-date-range.input[readonly] {
    background-color: #fff !important;
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    border: 2px solid #111 !important;
    border-radius: 6px;
    min-height: 50px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 16px;
    box-shadow: none !important;
    opacity: 1 !important;
}

.rental-range-picker .flatpickr-input::placeholder {
    color: #8a8a8a;
}

.rental-range-picker input.rental-date-range::placeholder {
    color: #8a8a8a !important;
    -webkit-text-fill-color: #8a8a8a !important;
}

.rental-range-picker .flatpickr-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
}

.rental-range-picker input.rental-date-range:focus {
    border-color: #111 !important;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08) !important;
}

.rental-summary-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
}

.rental-summary-toggle:disabled {
    cursor: default;
    opacity: 0.8;
}

.rental-summary-toggle .rental-summary {
    margin: 0;
    color: #444;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.rental-breakdown {
    margin-top: 10px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fbfbfb;
    padding: 10px 12px;
}

.rental-breakdown__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rental-breakdown__list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: grid;
    gap: 6px;
}

.rental-breakdown__item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.rental-breakdown__day {
    color: #333;
}

.rental-breakdown__price {
    color: #111;
    font-weight: 700;
    white-space: nowrap;
}

.rental-breakdown__note {
    font-size: 12px;
    color: #666;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.flatpickr-day.inRange {
    background: rgba(17, 17, 17, 0.14) !important;
    border-color: transparent !important;
    color: #111 !important;
    box-shadow: -5px 0 0 rgba(17, 17, 17, 0.14), 5px 0 0 rgba(17, 17, 17, 0.14);
}

.flatpickr-day.startRange + .endRange,
.flatpickr-day.startRange + .inRange,
.flatpickr-day.endRange + .inRange {
    box-shadow: -10px 0 0 #111 !important;
}

.flatpickr-day.startRange.endRange {
    box-shadow: none !important;
}

.flatpickr-day.startRange,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange,
.flatpickr-day.endRange:hover {
    box-shadow: 0 0 0 #111 !important;
}

.flatpickr-day:hover {
    background: rgba(17, 17, 17, 0.08) !important;
    border-color: rgba(17, 17, 17, 0.18) !important;
}

/* FAMILY LOOK */
.family-look-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.family-look-card {
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.family-look-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.family-look-card__body {
    padding: 14px;
}

.family-look-card__title {
    margin: 0 0 8px;
    font-size: 24px;
}

.family-look-card__title a {
    color: #111;
    text-decoration: none;
}

.family-look-card__excerpt {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.family-look-card__meta {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}

.family-look-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.family-look-single__media img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.family-look-single__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8a8a;
}

.family-look-single__content h1 {
    margin: 0 0 12px;
}

.family-look-single__description p:last-child {
    margin-bottom: 0;
}

.family-look-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.family-look-product-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.family-look-product-card__image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.family-look-product-card__body {
    padding: 12px;
}

.family-look-product-card__body h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.family-look-product-card__body h3 a {
    color: #141414;
    text-decoration: none;
}

.family-look-product-card__price {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.family-look-product-card__actions .btn {
    width: 100%;
}

@media (max-width: 480px) {
    .cart__wrapper {
        max-width: 100vw;
        width: 100vw;
    }

    .cart__header {
        padding: 15px max(12px, env(safe-area-inset-right)) 12px max(12px, env(safe-area-inset-left));
    }

    .cart__items {
        padding: 10px 12px 14px;
    }

    .cart__item {
        grid-template-columns: 72px 1fr auto;
        gap: 10px;
    }

    .cart__item-image img {
        width: 72px;
        height: 92px;
        border-radius: 8px;
    }

    .cart__footer {
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .family-look-grid,
    .family-look-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .family-look-single__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .family-look-grid,
    .family-look-products__grid {
        grid-template-columns: 1fr;
    }
}


.product-list.loading {
    opacity: 0.5;
    transition: 0.3s all ease;
}

.product-list.category {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}
.product-list.archive {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}
.product-attribute {
    /* chip */
    display: inline-block;
    padding: 4px 8px;
    line-height: 1;
    background-color: #e7e7e7;
    color: #000000;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 6px;
    min-width: 24px!important;
    text-align: center;
}
.product-attribute.is-color {
    width: 20px;
    height: 20px;
    min-width: 20px!important;
    aspect-ratio: 1;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #ccc;
}

@media(max-width: 992px) {
    .catalog-hero,
    .catalog-hero--compact,
    .catalog-layout.has-sidebar {
        grid-template-columns: 1fr;
    }

    .catalog-filter-panel {
        position: static;
    }

    .product-list.category {
        grid-template-columns: 1fr 1fr;
    }
    .product-list.archive {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 640px) {
    .catalog-page {
        padding-top: 26px;
    }

    .catalog-hero {
        gap: 22px;
    }

    .catalog-hero h1 {
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -0.05em;
    }

    .catalog-hero p,
    .catalog-hero__description {
        font-size: 16px;
    }

    .catalog-category-nav {
        flex-wrap: nowrap;
        margin-left: -12px;
        margin-right: -12px;
        overflow-x: auto;
        padding: 0 12px 4px;
        scrollbar-width: none;
    }

    .catalog-category-nav::-webkit-scrollbar {
        display: none;
    }

    .catalog-category-chip {
        flex: 0 0 auto;
    }

    .product-list.category,
    .product-list.archive {
        grid-template-columns: 1fr 1fr;
    }

    .product-card__title {
        font-size: 15px;
    }
}


/* BREADCRUMBS */
.fusion-breadcrumbs {
    padding: 20px 0;
    margin-bottom: 24px;
}

.woocommerce-breadcrumb {
    font-size: 14px;
}

.woocommerce-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.woocommerce-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.woocommerce-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.woocommerce-breadcrumbs a:hover {
    color: #000;
}

.woocommerce-breadcrumb li span[itemprop="name"] {
    color: #000;
    font-weight: 500;
}

.woocommerce-breadcrumb li:last-child span[itemprop="name"] {
    font-weight: 600;
}

.woocommerce-breadcrumb .delimiter {
    color: #ccc;
    margin: 0 4px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .fusion-breadcrumbs {
        padding: 16px 0;
        margin-bottom: 16px;
    }
    
    .woocommerce-breadcrumb {
        font-size: 13px;
    }
}


/* PAGINATION */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    padding: 0;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: #fff;
    border: 2px solid #000;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-links .page-numbers:hover {
    background: #000;
    color: #fff;
}

.nav-links .page-numbers.current {
    background: #000;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.nav-links .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.nav-links .prev,
.nav-links .next {
    font-size: 14px;
    padding: 0 16px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 6px;
        margin: 24px 0;
    }
    
    .nav-links .page-numbers {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .nav-links .prev,
    .nav-links .next {
        font-size: 13px;
        padding: 0 12px;
    }
}




.swiper-button-next,
.swiper-button-prev {
    color: #000!important;
    
}

/* CATEGORY UX POLISH */
.catalog-page.product-category .catalog-hero {
    align-items: start;
    gap: clamp(24px, 4vw, 58px);
    grid-template-columns: minmax(0, 820px);
    justify-content: start;
    margin-bottom: clamp(26px, 4vw, 44px);
}

.catalog-page.product-category .catalog-hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.96;
}

.catalog-page.product-category .catalog-hero p,
.catalog-page.product-category .catalog-hero__description {
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.48;
    max-width: 640px;
}

.catalog-layout__main {
    min-width: 0;
}

.catalog-toolbar {
    align-items: flex-start;
    gap: 16px;
}

.catalog-toolbar__meta {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-active-filter {
    align-items: center;
    background: #fff3fb;
    border: 1.5px solid #000;
    border-radius: 999px;
    color: #000;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    line-height: 1;
    padding: 9px 11px;
    text-decoration: none;
}

.catalog-active-filter i {
    font-style: normal;
    line-height: 1;
}

.catalog-active-filter--reset {
    background: #000;
    color: #fff;
}

.catalog-filter-toggle {
    align-items: center;
    background: #000;
    border: 2px solid #000;
    border-radius: 12px;
    color: #fff;
    display: none;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
    line-height: 1;
    min-height: 44px;
    padding: 0 16px;
}

.catalog-filter-toggle strong {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    color: #000;
    display: inline-flex;
    font-size: 12px;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 0 7px;
}

.catalog-filter-panel {
    border-radius: 16px;
    max-height: calc(100vh - 124px);
    max-height: calc(100dvh - 124px);
    overflow-y: auto;
    padding: 20px;
    scrollbar-gutter: stable;
    scrollbar-color: #000 #f1f1f1;
    scrollbar-width: thin;
}

.catalog-filter-panel::-webkit-scrollbar {
    width: 10px;
}

.catalog-filter-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 999px;
}

.catalog-filter-panel::-webkit-scrollbar-thumb {
    background: #000;
    border: 2px solid #f1f1f1;
    border-radius: 999px;
}

.catalog-filter-panel::-webkit-scrollbar-thumb:hover {
    background: #2a2a2a;
}

.catalog-filter-panel__head {
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
}

.catalog-filter-panel__head p {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.catalog-filter-panel__head h2 {
    font-size: clamp(24px, 2vw, 30px);
    margin: 0;
}

.catalog-filter-panel__close {
    align-items: center;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    color: #000;
    display: none;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.catalog-filter-panel__close span {
    font-size: 26px;
    line-height: 0.8;
    margin-top: -2px;
}

.catalog-filter-panel .wsaf-filter-form {
    margin: 0;
}

.catalog-filter-panel .wsaf-filter-params {
    display: grid;
    gap: 18px;
}

.catalog-filter-panel .wsaf-filter-group {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0 0 18px;
}

.catalog-filter-panel .wsaf-filter-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.catalog-filter-panel .wsaf-filter-group-title {
    border: 0;
    color: #000;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    margin: 0 0 12px;
    padding: 0;
    text-transform: uppercase;
}

.catalog-filter-panel .wsaf-filter-group-options {
    gap: 8px;
}

.catalog-filter-panel .wsaf-filter-group-options label {
    align-items: center;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    display: flex;
    gap: 10px;
    min-height: 42px;
    padding: 9px 10px;
}

.catalog-filter-panel .wsaf-filter-group-options label:hover {
    border-color: #000;
    background: #fff8fd;
}

.catalog-filter-panel .wsaf-filter-group-options .checkbox-dummy {
    border: 2px solid #000;
    border-radius: 6px;
    height: 20px;
    margin: 0;
    width: 20px;
}

.catalog-filter-panel .wsaf-filter-group-options .checkbox-dummy.is-color {
    border-radius: 999px;
    height: 28px;
    width: 28px;
}

.catalog-filter-panel .wsaf-filter-group-options label > span:last-child {
    color: #000;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
}

.catalog-filter-panel .wsaf-filter-group-options input[type="checkbox"]:checked ~ .checkbox-dummy {
    background: #000;
    border-color: #000;
}

.catalog-filter-panel .wsaf-filter-group-options input[type="checkbox"]:checked ~ span:last-child {
    color: #000;
    font-weight: 900;
}

.catalog-filter-panel__actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.catalog-filter-panel__actions a {
    color: #000;
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.catalog-filter-panel__actions button {
    background: #000;
    border: 2px solid #000;
    border-radius: 12px;
    color: #fff;
    display: none;
    font-size: 14px;
    font-weight: 900;
    min-height: 46px;
    padding: 0 16px;
}

.products.loading {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.catalog-empty--inline {
    max-width: none;
}

/* VIEWED PRODUCTS SWIPER */
.viewed-products-section {
    background: #fff;
    border-top: 2px solid #000;
    overflow: hidden;
    padding: clamp(42px, 7vw, 86px) 0;
}

.viewed-products-section__head {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: clamp(24px, 4vw, 42px);
}

.viewed-products-section__eyebrow {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.viewed-products-section h2 {
    color: #000;
    font-size: clamp(34px, 5vw, 70px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.96;
    margin: 0;
}

.viewed-products-section__head p:not(.viewed-products-section__eyebrow) {
    color: rgba(0, 0, 0, 0.62);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 600;
    line-height: 1.5;
    margin: 14px 0 0;
    max-width: 620px;
}

.viewed-products-section__controls {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.viewed-products-section__controls button {
    align-items: center;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    color: #000;
    display: inline-flex;
    font-size: 22px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 48px;
}

.viewed-products-section__controls button:hover {
    background: #000;
    color: #fff;
}

.viewed-products-section__controls button:disabled {
    cursor: default;
    opacity: 0.32;
    pointer-events: none;
}

.viewed-products-section__controls[hidden] {
    display: none;
}

.viewed-products-section .swiper {
    overflow: visible;
    padding-bottom: 34px;
}

.viewed-products-section .swiper-wrapper {
    display: flex;
}

.viewed-products-section .swiper-slide {
    height: auto;
}

.viewed-products-section .swiper-slide .product-card {
    height: 100%;
}

.swiper-pagination {
    position: relative!important;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.18;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

@media(max-width: 992px) {
    .catalog-filter-toggle {
        display: inline-flex;
    }

    body.catalog-filters-open::before {
        background: rgba(0, 0, 0, 0.44);
        content: "";
        inset: 0;
        position: fixed;
        z-index: 10030;
    }

    .catalog-filter-panel {
        border-radius: 22px 22px 0 0;
        bottom: 0;
        box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.18);
        left: 0;
        max-height: min(82dvh, 760px);
        opacity: 0;
        overflow: auto;
        padding: 20px clamp(16px, 4vw, 28px) calc(20px + env(safe-area-inset-bottom));
        pointer-events: none;
        position: fixed;
        right: 0;
        top: auto;
        transform: translateY(calc(100% + 24px));
        transition: transform 0.26s ease, opacity 0.2s ease;
        z-index: 10040;
    }

    .catalog-filter-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .catalog-filter-panel__close {
        display: inline-flex;
    }

    .catalog-filter-panel__actions {
        background: #fff;
        bottom: 0;
        margin: 18px -4px 0;
        padding-top: 14px;
        position: sticky;
    }

    .catalog-filter-panel__actions button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width: 640px) {
    .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-filter-toggle {
        justify-content: center;
        width: 100%;
    }

    .catalog-page.product-category .catalog-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .viewed-products-section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .viewed-products-section__controls {
        display: none;
    }

    .viewed-products-section .swiper {
        overflow: visible;
    }
}



/* PRODUCT SINGLE */
.product-single {
    background: #fff;
    padding: clamp(24px, 4vw, 54px) 0 clamp(54px, 8vw, 110px);
}

.product-single__hero {
    padding-bottom: clamp(34px, 6vw, 78px);
}

.product-single__breadcrumbs {
    margin-bottom: clamp(18px, 3vw, 32px);
}

.product-single__hero-grid {
    align-items: start;
    display: grid;
    gap: clamp(26px, 4vw, 52px);
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.product-single__media {
    min-width: 0;
}

.product-single__booking {
    min-width: 0;
}

.product-single__booking-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 18px;
    padding: clamp(22px, 3vw, 34px);
    position: sticky;
    top: 86px;
}

.product-single__eyebrow {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.single-product__title {
    color: #000;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin: 0;
}

.product-single__price {
    color: #000;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 18px 0 0;
}

.product-single__price small {
    color: rgba(0, 0, 0, 0.52);
    font-size: 14px;
    font-weight: 750!important;
    letter-spacing: 0;
}

.product-single__short-description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.66);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    margin: 18px 0 22px;
    padding-bottom: 22px;
}

.product-single__short-description p {
    margin: 0;
}

.product-single__booking-form {
    display: grid;
    gap: 18px;
}

.product-single__booking-form form.cart {
    margin: 0;
}

.product-single__booking-form .stock {
    border: 1.5px solid #000;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 16px;
    padding: 8px 11px;
}

.product-single__booking-form .attr-group-label,
.product-single__booking-form .rental-range label {
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.variation-radio-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.variation-radio-label {
    cursor: pointer;
    margin: 0;
}

.variation-radio-label input[type="radio"] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.variation-radio-label .radio-box {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    display: inline-flex;
    font-size: 17px;
    font-weight: 850;
    justify-content: center;
    line-height: 1;
    min-height: 48px;
    min-width: 48px;
    padding: 0 14px;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.variation-radio-label:hover .radio-box {
    background-color: #fff3fb;
    transform: translateY(-1px);
}

.variation-radio-label .radio-box.color {
    border-radius: 999px !important;
    height: 46px;
    min-width: 46px;
    padding: 0;
    width: 46px;
}

.variation-radio-label input[type="radio"]:checked + .radio-box:not(.color) {
    background-color: #000;
    color: #fff;
}

.variation-radio-label input[type="radio"]:checked + .radio-box.color {
    box-shadow: inset 0 0 0 5px #fff, 0 0 0 2px #000;
}

.variation-radio-label input[type="radio"]:checked + .radio-box.color::after {
    background: #000;
    border: 2px solid #fff;
    border-radius: 999px;
    content: "";
    height: 14px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
}

.variation-radio-label input[type="radio"]:focus + .radio-box,
.variation-radio-label input[type="radio"]:focus-visible + .radio-box {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.product-single__booking-form .single_variation_wrap {
    display: grid;
    gap: 0;
}

.product-single__booking-form .woocommerce-variation {
    color: rgba(0, 0, 0, 0.64);
    font-size: 14px;
    font-weight: 700;
}

.product-single__booking-form .rental-range {
    background: #fff8fd;
    border: 2px solid #000;
    border-radius: 16px;
    margin: 6px 0 16px!important;
    padding: 16px;
}

.rental-range-picker .flatpickr-input,
.rental-range-picker .flatpickr-input[readonly],
.rental-range-picker input.rental-date-range,
.rental-range-picker input.rental-date-range[readonly],
.rental-range-picker input.rental-date-range.input,
.rental-range-picker input.rental-date-range.input[readonly],
.product-single__booking-form .rental-range-fallback input {
    background-color: #fff !important;
    border: 2px solid #111 !important;
    border-radius: 10px;
    box-shadow: none !important;
    color: #111 !important;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 850;
    line-height: 1.2;
    min-height: 58px;
    opacity: 1 !important;
    padding: 13px 16px;
    -webkit-text-fill-color: #111 !important;
}

.rental-range-picker input.rental-date-range:focus,
.product-single__booking-form .rental-range-fallback input:focus {
    border-color: #111 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
}

.rental-summary-toggle {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    display: inline-flex;
    margin-top: 10px;
    padding: 10px 12px;
    text-align: left;
}

.rental-summary-toggle .rental-summary {
    color: #000;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    margin: 0;
    text-decoration: none;
}

.rental-breakdown {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.16);
    border-radius: 14px;
    margin-top: 10px;
    padding: 12px 14px;
}

.rental-breakdown__title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rental-breakdown__item {
    font-size: 14px;
}

.product-single__booking-form button[type="submit"],
.product-single__booking-form .single_add_to_cart_button {
    align-items: center;
    background: #000!important;
    border: 2px solid #000!important;
    border-radius: 12px!important;
    color: #fff!important;
    display: inline-flex!important;
    font-size: clamp(18px, 2vw, 26px)!important;
    font-weight: 900!important;
    justify-content: center;
    letter-spacing: -0.02em;
    line-height: 1!important;
    min-height: 64px;
    padding: 16px 22px!important;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.product-single__booking-form button[type="submit"]:hover,
.product-single__booking-form .single_add_to_cart_button:hover {
    background: #fff!important;
    color: #000!important;
    transform: translateY(-1px);
}

.product-single__banner-inhouse {
    background: rgb(253, 236, 255);
    border: 1.5px solid #000;
    border-radius: 14px;
    color: #000;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    margin: 18px 0 0;
    padding: 12px 14px;
}

.product-single__dress-parameeters {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.68);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
    margin-top: 20px;
    padding-top: 18px;
}

.product-single__dress-parameeters h5 {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.single-product__images {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-product__images .image-item,
.single-product__images-mobile .image-item {
    background: #f2f2f2;
    color: inherit;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.single-product__images .image-item {
    aspect-ratio: 3 / 4;
}

.single-product__images .image-item:first-child {
    aspect-ratio: 5 / 6;
    grid-column: 1 / -1;
}

.single-product__images img,
.single-product__images-mobile img {
    display: block;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

.single-product__images .image-item:hover img,
.single-product__images-mobile .image-item:hover img {
    transform: scale(1.035);
}

.single-product__images-mobile {
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
    padding: 0 12px 30px;
}

.single-product__images-mobile .swiper-container {
    overflow: visible;
}

.single-product__images-mobile .image-item {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
}

.product-gallery-pagination {
    bottom: 0!important;
    margin-top: 14px;
}

.product-video-tile::after,
.gallery-item-video a::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.product-video-badge {
    align-items: center;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    bottom: 14px;
    color: #000;
    display: inline-flex;
    gap: 8px;
    left: 14px;
    min-height: 44px;
    padding: 6px 13px 6px 6px;
    position: absolute;
    z-index: 2;
}

.product-video-badge__icon {
    align-items: center;
    background: #000;
    border-radius: 999px;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.product-video-badge__icon::before {
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    content: "";
    display: block;
    margin-left: 2px;
}

.product-video-badge__label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.client-gallery {
    background: #000;
    padding: clamp(8px, 1.5vw, 15px);
}

.client-gallery .masonry-grid {
    column-gap: 15px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 15px;
}

.client-gallery .gallery-item {
    aspect-ratio: 1;
    display: block;
}

.client-gallery .gallery-item.hidden-item {
    display: none;
}

.client-gallery .gallery-item a {
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    position: relative;
}

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

.client-gallery .gallery-item a:hover img,
.client-gallery .gallery-item a:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.overlay-text {
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.client-gallery__video-badge {
    bottom: 12px;
    left: 12px;
}

.product-single__sections {
    padding-bottom: clamp(28px, 5vw, 68px);
}

.product-single__section {
    margin-top: clamp(28px, 5vw, 62px);
}

.product-single__full-description {
    padding: clamp(34px, 6vw, 74px) 0 0;
}

.product-single__content {
    border-top: 2px solid #000;
    color: rgba(0, 0, 0, 0.72);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 600;
    line-height: 1.62;
    padding-top: clamp(24px, 4vw, 42px);
}

@media(max-width: 992px) {
    .product-single__hero-grid {
        grid-template-columns: 1fr;
    }

    .product-single__booking-card {
        max-height: none;
        overflow: visible;
        position: static;
    }

    .client-gallery .masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 640px) {
    .product-single {
        padding-top: 20px;
    }

    .product-single__hero {
        padding-bottom: 34px;
    }

    .product-single__booking-card {
        border-radius: 16px;
        padding: 18px;
    }

    .single-product__title {
        font-size: clamp(38px, 11vw, 44px);
        letter-spacing: -0.052em;
    }

    .product-single__price {
        font-size: 25px;
    }

    .product-single__short-description {
        font-size: 15px;
        margin: 14px 0 18px;
        padding-bottom: 18px;
    }

    .variation-radio-label .radio-box {
        min-height: 44px;
        min-width: 44px;
    }

    .variation-radio-label .radio-box.color {
        height: 42px;
        min-width: 42px;
        width: 42px;
    }

    .product-single__booking-form .rental-range {
        padding: 14px;
    }

    .product-single__booking-form button[type="submit"],
    .product-single__booking-form .single_add_to_cart_button {
        min-height: 58px;
    }

    .client-gallery .masonry-grid {
        gap: 6px;
    }

    .product-video-badge {
        bottom: 10px;
        left: 10px;
        min-height: 40px;
    }
}
