/* sora-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/Sora/sora-v17-latin-ext-300.woff2') format('woff2');
}

/* sora-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Sora/sora-v17-latin-ext-regular.woff2') format('woff2');
}

/* sora-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/Sora/sora-v17-latin-ext-500.woff2') format('woff2');
}

/* sora-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/Sora/sora-v17-latin-ext-600.woff2') format('woff2');
}

/* sora-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/Sora/sora-v17-latin-ext-700.woff2') format('woff2');
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-ext-regular.woff2') format('woff2');
}

/* open-sans-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-ext-600.woff2') format('woff2');
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/OpenSans/open-sans-v44-latin-ext-700.woff2') format('woff2');
}

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

:root {
    --vh: 100dvh;
    --app-height: 100lvh;
    --visible-height: 100dvh;
    --bg: #050505;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: 1320px;
    --header-height: 90px;
    --container-width: 1440px;
    --container-padding: 40px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: transparent;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-x: none;
}

@supports (height: 100dvh) {
    :root {
        --vh: 100dvh;
        --visible-height: 100dvh;
    }
}

@supports (height: 100lvh) {
    :root {
        --app-height: 100lvh;
    }
}

main {
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

body {
    font-family: 'Sora', sans-serif;
    background: transparent;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    touch-action: pan-y;
}

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

button {
    font: inherit;
    border: 0;
    background: transparent;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* INTRO */
.intro {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
            radial-gradient(
                    80% 60% at 50% 0%,
                    rgba(255, 255, 255, 0.10),
                    rgba(255, 255, 255, 0.04) 35%,
                    transparent 70%
            ),
            linear-gradient(
                    180deg,
                    #6b6b6b 0%,
                    #2f2f2f 40%,
                    #0d0d0d 70%,
                    #000000 100%
            );
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: transform 0.9s var(--ease), opacity 0.35s ease, visibility 0s linear 0.9s;
    will-change: transform, opacity;
}

.intro-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s ease, transform 0.45s var(--ease);
    will-change: transform, opacity;
}

.intro.is-logo-hidden .intro-logo {
    opacity: 0;
}

.intro.is-hidden {
    transform: translateY(-100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: var(--header-height);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.8s var(--ease), visibility 0s linear 0.8s;
    will-change: transform;
}

.site-header.is-visible {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.8s var(--ease), visibility 0s linear 0s;
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* LANGUAGE SWITCHER */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
    cursor: pointer;
    padding: 0;
    width: 45px;
}

.arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    margin-top: -6px;
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.language-switcher.is-open .arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: -18px;
    min-width: 72px;
    padding: 6px 0;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    opacity: 0;
    display: block;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher.is-open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* MAIN / PANELS */
main {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    background: transparent;
}

.panel {
    position: relative;
    height: 485px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
}

.panel.panel--4,
.panel.panel--5 {
    height: auto;
}

.panel__inner {
    position: relative;
    width: min(100%, 1200px);
    max-width: 100%;
    flex: 1;
    text-align: center;
    z-index: 1;
    padding: 32px 0 0 0;
}

.panel--hero {
    position: relative;
    padding: 0;
    height: var(--vh);
    min-height: var(--vh);
    background: #000;
    overflow: visible;
}

.panel--hero::before {
    display: none;
}

.panel--hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * env(safe-area-inset-bottom));
    height: env(safe-area-inset-bottom);
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.44) 100%),
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.10), transparent 42%),
            #000;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.44) 100%),
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.10), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: calc(max(24px, env(safe-area-inset-top)) + var(--header-height));
    flex: none !important;
}

h1,
h2 {
    word-break: break-word;
}

h1 {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p {
    color: #fff;
    font-family: Sora, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 10px;
}

.panel__inner.hero-content h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.panel__inner.hero-content h2 span {
    font-weight: 300;
    font-style: italic;
}

.panel--4 {
    background: #ffffff;
}

.panel--5 {
    background: linear-gradient(180deg, #ffffff 0%, #E4E4E6 100%);
}

.panel__inner h2 {
    color: #000;
    font-family: Sora, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 40px;
    text-align: left;
}

.panel__inner p {
    color: #000;
    font-family: Sora, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    max-width: 600px;
    margin-bottom: 0;
    text-align: left;
}

.panel__inner ul.brands {
    display: flex;
    max-width: 920px;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.panel__inner ul.brands li {
    flex: 1;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}

.panel__inner ul.brands li a img {
	max-width: none;
}

.panel__inner ul.brands li:first-child {
    border-left: 1px solid #D9D9D9;
}

.prods1,
.prods2,
.prods3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

/** section 1 **/
.prods1.bg-1 {
	background-image: url('assets/images/desktop/webp/crockpot.webp');
	background-color: #E1E1E0;
}

.prods1.bg-2 {
	background-image: url('assets/images/desktop/webp/breville.webp');
	background-color: #C2C2C0;
}

.prods1.bg-3 {
	background-image: url('assets/images/desktop/webp/instantpot.webp');
	background-color: #ECE3DF;
}

.prods1.bg-4 {
	background-image: url('assets/images/desktop/webp/foodsaver.webp');
	background-color: #E6E6E6;
}

.prods1.bg-5  {
	background-image: url('assets/images/desktop/webp/crockpot.webp');
	background-color: #FFF7EC;
}
/** end section 1 **/

/** section 2 **/
.prods2.bg-1 {
	background-image: url('assets/images/desktop/webp/dyson.webp');
	background-color: #C5CCD4;
}

.prods2.bg-2 {
	background-image: url('assets/images/desktop/webp/dyson1.webp');
	background-color: #E3E5E4;
}

.prods2.bg-3 {
	background: url('assets/images/desktop/webp/babyliss.webp'), linear-gradient(90deg, #DFC3BC, #C4A9A7);
	background-size: 100% auto;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.prods2.bg-4 {
	background-image: url('assets/images/desktop/webp/bblpro.webp');
	background-color: #C8D5DA ;
}

.prods2.bg-5 {
	background-image: url('assets/images/desktop/webp/aiper.webp');
	background-color: #ffffff ;
}
/** end  section 2 **/

/** section 3 **/
.prods3.bg-1 {
	background-image: url('assets/images/desktop/webp/nikon.webp');
	background-color: #D9D3CC;
}

.prods3.bg-2 {
	background-image: url('assets/images/desktop/webp/drone.webp');
	background-color: #C2D1E3;
}

.prods3.bg-3 {
	background-image: url('assets/images/desktop/webp/action.webp');
	background-color: #BBDAE2;
}

.prods3.bg-4 {
	background-image: url('assets/images/desktop/webp/hasselblad.webp');
	background-color: #F5C9AF;
}

.prods3.bg-5 {
	background-image: url('assets/images/desktop/webp/nikon.webp');
	background-color: #D9D3CC;
}
/** end  section 3 **/

#contact {
    background: #050505 url('assets/images/bg-footer.png') top center no-repeat;
    background-size: cover;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    margin-bottom: 80px;
}

.stat-card {
    min-height: 220px;
    padding: 34px 38px 36px;
    /*border-right: 1px solid #d3d3d3;*/
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card__number {
    color: #2a68f5;
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 10px;
    text-align: left;
}

.stat-card__label {
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: left;
}

.stat-card__text {
    color: #222;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.28;
    max-width: 240px;
    margin: 0;
}

.country-pills {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
}

.country-pill {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #d9d9d9;
    border-radius: 10px;
}

.country-pill img {
    width: 36px;
    height: auto;
    flex-shrink: 0;
    border-radius: 6px;
}

.country-pill span {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

/** contact **/
.panel--6 .panel__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    min-height: 100%;
    padding: 90px 0 0 0;

    box-sizing: border-box;
}

.panel--6 .contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.panel--6 .panel__inner .contact-header h2 {
    color: #FFF;
    font-family: Sora;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
    text-align: left;
}

.panel--6 .contact-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 70px;
    background: #2f6df6;
    color: #fff;
    text-decoration: none;
    font-family: Sora;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.panel--6 .contact-header a:hover {
    background: #3f7bff;
    transform: translateY(-1px);
}

.panel--6 ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px 56px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.panel--6 ul li {
    min-width: 0;
}

.panel--6 ul li h4 {
    color: #5a5a5a;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 10px 0;
}

.panel--6 ul li p span,
.panel--6 ul li p {
    margin: 0;
    color: #FFF;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.panel--6 ul li p span {
    display: block;
}

.panel--6 ul li p a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.panel--6 ul li p a:hover {
    opacity: 0.8;
}

.panel--6 .copy {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 32px;
    padding-top: 12px;
}

.panel--6 .copy a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: 86px;
}

.panel--6 .copy a svg {
    width: 160px;
    height: auto;
    display: block;
}

.panel--6 .copy .copyright {
    justify-self: end;
    color: #5a5a5a;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 16.8px */
}


.panel__inner ul.brands.is-mobile,
.panel__inner ul.brands.is-desktop {
	display: none !important;
}

@media (max-width: 1100px) {

    .panel--6 .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel--6 ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 40px;
    }

    .panel--6 .copy {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .panel--6 .copy a {
        grid-column: 1 / 2;
    }

    .panel--5 .copy .copyright {
        grid-column: 2 / 3;
        align-self: end;
    }
}

@media (min-width: 1080px) {
    .panel__inner ul.brands {
        max-width: 1080px;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overscroll-behavior-y: none;
    }

    html {
        overflow: hidden;
    }

    :root {
        --header-height: 72px;
        --container-padding: 30px;
    }

    main {
        position: relative;
        overflow-x: hidden;
    }

    .panel {
        height: var(--app-height);
        min-height: var(--app-height);
        scroll-margin-top: 0;
    }

    .panel--4,
    .panel--5 {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    .panel__inner {
        padding-top: 90px;
    }

    .panel__inner.hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .panel__inner.hero-content h2 {
        padding: 0 30px;
        font-size: 28px;
        line-height: normal;
    }

    .main-nav {
        display: none;
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .header-right {
        gap: 20px;
    }

    .lang-btn {
        font-size: 14px;
    }

    .lang-dropdown a {
        font-size: 14px;
    }

    .hero-content {
        padding-top: calc(max(20px, env(safe-area-inset-top)) + var(--header-height));
        padding-bottom: env(safe-area-inset-bottom);
    }

    .panel--hero {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    .panel__inner h2 {
        margin-bottom: clamp(10px, 2vh, 20px);
		font-size: 26px;
    }
	
	.panel--6 .panel__inner .contact-header h2 {
		font-size: 26px;
	}

    .panel--4 .panel__inner h2,
    .panel--5 .panel__inner h2 {
        text-align: center;
        margin-bottom: clamp(10px, 2vh, 20px);
    }

    .prods1,
    .prods2,
    .prods3 {
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

	/** section 1 **/
    .prods1.bg-1 {
        background-image: url('assets/images/mobile/webp/breville.webp');
        background-color: #E1E1E0;
    }

    .prods1.bg-2 {
        background-image: url('assets/images/mobile/webp/breville.webp');
        background-color: #C2C2C0;
    }

    .prods1.bg-3 {
        background-image: url('assets/images/mobile/webp/instantpot.webp');
        background-color: #ECE3DF;
    }

    .prods1.bg-4 {
        background-image: url('assets/images/mobile/webp/foodsaver.webp');
        background-color: #E6E6E6;
    }

    .prods1.bg-5  {
        background-image: url('assets/images/mobile/webp/crockpot.webp');
        background-color: #FFF7EC;
    }
	/** end section 1 **/

	/** section 2 **/
    .prods2.bg-1 {
        background-image: url('assets/images/mobile/webp/dyson.webp');
        background-color: #C5CCD4;
    }

    .prods2.bg-2 {
        background-image: url('assets/images/mobile/webp/dyson1.webp');
        background-color: #E3E5E4;
    }

    .prods2.bg-3 {
        background: url('assets/images/mobile/webp/babyliss.webp'), linear-gradient(90deg, #DFC3BC, #C4A9A7);
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
	
	.prods2.bg-4 {
        background-image: url('assets/images/mobile/webp/bblpro.webp');
        background-color: #C8D5DA ;
    }
	
	.prods2.bg-5 {
        background-image: url('assets/images/mobile/webp/aiper.webp');
        background-color: #ffffff ;
    }
	/** end  section 2 **/

	/** section 3 **/
    .prods3.bg-1 {
        background-image: url('assets/images/mobile/webp/nikon.webp');
        background-color: #D9D3CC;
    }

    .prods3.bg-2 {
        background-image: url('assets/images/mobile/webp/drone.webp');
        background-color: #C2D1E3;
    }

    .prods3.bg-3 {
        background-image: url('assets/images/mobile/webp/action.webp');
        background-color: #BBDAE2;
    }

    .prods3.bg-4 {
        background-image: url('assets/images/mobile/webp/hasselblad.webp');
        background-color: #F5C9AF;
    }

    .prods3.bg-5 {
        background-image: url('assets/images/mobile/webp/nikon.webp');
        background-color: #D9D3CC;
    }
	/** end  section 3 **/

    .panel__inner ul.brands,
    .panel__inner ul.brands.is-mobile {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        gap: 0;
    }

    .prods3 .panel__inner ul.brands {
        grid-template-columns: repeat(4, 1fr);
    }

    .prods1 .panel__inner ul.brands {
        grid-template-columns: repeat(6, 1fr);
    }

    .panel__inner ul.brands li {
        grid-column: span 2;
        min-height: 52px;
        border: 1px solid #D9D9D9;
        background: rgba(255, 255, 255, 0.70);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 10px;
        height: 60px;
    }

    .prods1 .panel__inner ul.brands li:nth-child(4),
    .prods1 .panel__inner ul.brands li:nth-child(5) {
        grid-column: span 3;
    }

    .prods3 .panel__inner ul.brands li {
        grid-column: span 2;
    }

    ul.brands li.ninja img { height: 28px; }
    ul.brands li.ip img { height: 18px; }
    ul.brands li.breville img { height: 32px; }
    ul.brands li.cp img { height: 63px; }
    ul.brands li.fs img { height: 42px; }
    ul.brands li.dyson img { height: 37px; }
    ul.brands li.babyliss img { height: 22px; }
    ul.brands li.babylisspro img { height: 22px; }
    ul.brands li.shark img { height: 34px; }
    ul.brands li.aiper img { height: 25px; }
    ul.brands li.red img { height: 75px; }
    ul.brands li.nikon img { height: 30px; }
    ul.brands li.dji img { height: 50px; }
    ul.brands li.hasselblad img { height: 180px; }

    .prods2.panel .p40 {
        padding-left: 40%;
    }

    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        touch-action: pan-y pan-x;
    }

	.swiper-vision {
		position: relative;
		width: 100%;
		overflow: hidden;
		isolation: isolate;
		padding-bottom: 0;
		display: flex;
	}

	.swiper-vision .swiper-wrapper {
		align-items: flex-start;
		height: auto !important;
	}

	.swiper-vision .swiper-slide {
		height: auto !important;
		display: flex;
		flex-direction: column;
		-webkit-user-select: none;
		user-select: none;
	}

	.custom-swiper-pag.swiper-pagination{
		/* position: static; */
	}

	.swiper-slide img {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 0;
		object-fit: contain;
	}

    .swiper-slide h3 {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        margin: 12px 0 10px 0;
        min-height: calc(1.2em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .swiper-slide .info-text span.number {
        color: #2A68F5;
        font-family: Sora, sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        text-align: center;
        line-height: 1;
		margin-bottom: 5px;
    }

    .swiper-slide .info-text span.text {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        text-align: center;
        padding-top: 2px;
    }

    .swiper-slide .info-text span.text::first-letter {
        text-transform: uppercase;
    }

    .swiper-slide img {
        width: 100%;
        border-radius: 0;
    }

	.swiper-vision .swiper-pagination {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #d3d3d3;
        border-bottom: 1px solid #d3d3d3;
        margin-bottom: 20px;
    }

    .stat-card {
        min-height: 180px;
        padding: 18px 16px 16px;
        border-right: 1px solid #d3d3d3;
        border-bottom: 1px solid #d3d3d3;
    }


    .stat-card.mobile-even {
        background-color: #2a68f5;
    }

    .stat-card.mobile-even .stat-card__number,
    .stat-card.mobile-even .stat-card__label,
    .stat-card.mobile-even .stat-card__text {
        color: #ffffff;
    }

    .stat-card:nth-child(2n) {
        border-right: 0;
    }

    .stat-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .stat-card__number {
        font-size: 38px;
        margin-bottom: 2px;
    }

    .stat-card__label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .panel__inner p .stat-card__text {
        font-size: 14px;
        line-height: 1.22;
        max-width: none;
    }

    .country-pills {
        gap: 10px;
    }

    .country-pill {
        padding: 6px 7px;
        gap: 5px;
    }

    .country-pill span {
        font-weight: 300;
        font-size: 12px;
    }
	
	.swiper-slide .info-text span.text > strong {
		font-weight: 700 !important;
	}

    /* MOBILE FULLPAGE FIX */
    body.is-mobile-fullpage {
        overflow: hidden;
        height: var(--app-height);
        min-height: var(--app-height);
        touch-action: pan-y;
    }

    body.is-mobile-fullpage main {
        position: relative;
        width: 100%;
        min-height: auto;
        height: auto;
        overflow: visible;
        will-change: transform;
        transform: translate3d(0, 0, 0);
		backface-visibility: hidden;
    }

    body.is-mobile-fullpage main > .panel {
        height: var(--app-height);
        min-height: var(--app-height);
    }

    body.is-mobile-fullpage .panel {
        position: relative;
    }

    body.is-mobile-fullpage .panel__inner {
        height: 100%;
    }

/*     body.is-mobile-fullpage .panel--5 .panel__inner {
        display: flex;
        flex-direction: column;
    } */

/*     body.is-mobile-fullpage .swiper-vision {
        flex: 1;
    } */
		
	body.is-mobile-fullpage .panel--4 .panel__inner {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	body.is-mobile-fullpage .panel--4 .panel__inner h2 {
		flex: 1
	}

	body.is-mobile-fullpage .panel--4 .pagdiv {
		/* display: flex;
		align-items: center; */
		flex: 1
	}

	body.is-mobile-fullpage .panel--4 .swiper-vision {
		width: 100%;
		margin-top: auto;
		margin-bottom: auto;
	}
	
	
	.panel--5 .panel__inner {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	.panel--5 .panel__inner h2 {
		flex: 0 0 auto;
		margin-bottom: 40px;
	}

	.panel--5 .stats__grid {
		margin-top: auto;
		margin-bottom: auto;
	}

	.panel--5 .country-pills {
		margin-top: auto;
		margin-bottom: 0;
		flex: 0 0 auto;
	}
	

    /** contact **/

    .panel--6 .panel__inner {
        padding: 90px 16px 24px;
        gap: 65px;
        justify-content: flex-start;
    }

    .panel--6 .contact-header {
        align-items: flex-start;
        gap: 28px;
    }

    .panel--6 .contact-header h2 {
        max-width: 320px;
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .panel--6 .contact-header a {
        min-width: 149px;
        height: 58px;
        padding: 0 26px;
        font-size: 16px;
    }

    .panel--6 ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 24px;
    }

    .panel--6 ul li h4 {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.1;
        letter-spacing: 0.03em;
    }

    .panel--6 ul li p {
        font-size: 16px;
        line-height: 1.4;
    }

    .panel--6 ul li p span {
        margin-top: 2px;
        font-size: 16px;
        line-height: 1.3;
    }

    .panel--6 .copy {
        grid-template-columns: 1fr auto;
        gap: 20px 16px;
        padding-top: 8px;
    }

    .panel--6 .copy a svg {
        width: 125px;
    }

    .panel--6 .copy .copyright {
        font-size: 14px;
    }
}

@media (max-width: 400px) {

    .panel__inner.hero-content h2 {
        padding: 0;
        font-size: 26px;
        line-height: normal;
    }
}

@media (max-width: 390px) {
    :root {
        --container-padding: 20px;
        --header-height: 64px;
    }

    .panel {
        padding: max(0px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
    }

    .panel__inner.hero-content h2 {
        padding: 0;
        font-size: 26px;
        line-height: normal;
    }


    ul.brands li.hasselblad img { height: 175px; }

    .swiper-vision {
        width: 100%;
        overflow: hidden;
    }

/*     .swiper-vision .swiper-slide {
        height: 100%;
    } */

    .swiper-slide h3 {
        line-height: 1.1;
        min-height: calc(1.1em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .swiper-slide .info-text span.number {
        font-size: 40px;
    }

    .swiper-slide .info-text span.text {
        font-size: 14px;
        padding-top: 1px;
    }
	
	.swiper-slide .info-text span.text > strong {
		font-weight: 700 !important;
	}
}

@media (max-width: 370px) {
    :root {
        --container-padding: 20px;
        --header-height: 64px;
    }

    .panel {
        padding: 20px;
    }

    .panel__inner.hero-content h2 {
        padding: 0;
        font-size: 26px;
        line-height: normal;
    }


    ul.brands li.hasselblad img { height: 170px; }

    .swiper-vision {
        width: 100%;
        overflow: hidden;
    }

/*     .swiper-vision .swiper-slide {
        height: 100%;
    } */

    .swiper-slide h3 {
        line-height: 1.1;
        min-height: calc(1.1em * 2);
    }

    .swiper-slide .info-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .swiper-slide .info-text span.number {
        font-size: 40px;
    }

    .swiper-slide .info-text span.text {
        font-size: 14px;
        padding-top: 1px;
    }
	
	.swiper-slide .info-text span.text > strong {
		font-weight: 700 !important;
	}
}

@media (min-width: 768px) {
	
	.panel__inner ul.brands,
	.panel__inner ul.brands.is-desktop {
		display: flex !important;
	}
	
	ul.brands li.ninja a img { height: 40px; }
	ul.brands li.ip a img { height: 25px; }
	ul.brands li.breville a img { height: 44px; }
	ul.brands li.cp a img { height: 89px; }
	ul.brands li.fs a img { height: 52px; }

	ul.brands li.dyson a img { height: 50px; }
	ul.brands li.babyliss a img { height: 33px; }
	ul.brands li.babylisspro a img { height: 33px; }
	ul.brands li.shark a img { height: 49px; }
	ul.brands li.aiper a img { height: 35px; }

	ul.brands li.nikon a img { height: 45px; }
	ul.brands li.red a img { height: 100px; }
	ul.brands li.dji a img { height: 70px; }
	ul.brands li.hasselblad a img { height: 245px; }

	.img-overflow{
		display: block;
	}

    .panel--4 .panel__inner h2,
    .panel--5 .panel__inner h2 {
        color: #000;
        text-align: center;
        font-family: Sora, sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .swiper.swiper-vision {
        width: 100%;
        overflow: visible;
    }

    .swiper.swiper-vision .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 100px;
        column-gap: 24px;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }

    .swiper.swiper-vision .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        flex-shrink: 1 !important;
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 0;
    }

    .swiper.swiper-vision .swiper-slide h3 {
        color: #000;
        font-family: Sora, sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 10px;
        text-align: center;
        min-height: calc(1.2em * 2);
    }

    .swiper.swiper-vision .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-radius: 0;
    }

    .swiper.swiper-vision .swiper-slide .info-text {
        display: flex;
        align-items: center;
        gap: 0;
        flex-direction: column;
    }

    .swiper.swiper-vision .swiper-slide .info-text span.number {
        color: #2A68F5;
        font-family: Sora, sans-serif;
        font-size: 52px;
        font-weight: 400;
        line-height: 1;
        flex-shrink: 0;
        text-align: center;
    }

    .swiper.swiper-vision .swiper-slide .info-text span.text {
		color: #000;
		font-family: Sora, sans-serif;
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 140%;
		max-width: 600px;
		margin-bottom: 0;
		text-align: center;
    }

    .swiper.swiper-vision .swiper-slide .info-text span.text::first-letter {
        text-transform: uppercase;
    }

    .swiper.swiper-vision .swiper-pagination {
        display: none !important;
    }

    .stat-card.even {
        background-color: #2a68f5;
    }

    .stat-card.even .stat-card__number,
    .stat-card.even .stat-card__label,
    .stat-card.even .stat-card__text {
        color: #ffffff;
    }
}


@media (max-width: 767px) and (max-height: 670px) {
	.prods1.bg-1,
	.prods1.bg-3 {
		background-position: center 60px;
	}
	.prods1.bg-2 {
		background-position: center 70px;
	}

}

@media (max-width: 767px) and (max-height: 700px) {
	.prods1.bg-1,
	.prods1.bg-2,
	.prods1.bg-3 {
		background-position: center 70px;
	}

	.panel__inner h2 {
		font-size: 28px;
		line-height: 30px;
	}

	.swiper-slide h3 {
		font-size: 18px;
		margin-bottom: clamp(5px, 1vh, 20px)
	}

	.swiper-slide .info-text span.text {
		font-size: 14px;
	}

	.swiper-slide .info-text span.number {
		font-size: 36px;
	}

	.panel__inner {
		padding-top: 90px;
	}

	.stat-card__number {
		font-size: 38px
	}

	.stat-card__label {
		font-size: 14px;
	}
	
	.panel--4 .panel__inner h2, .panel--5 .panel__inner h2 {
		margin-bottom: clamp(10px, 2vh, 20px)
	}

	.stat-card {
		padding: 14px;
	}
}

@media (max-width: 767px) and (max-height: 780px) {
	.prods1.bg-1,
	.prods1.bg-3 {
		background-position: center 70px;
	}
	.prods1.bg-2 {
		background-position: center 100px;
	}

	.panel__inner h2 {
		font-size: 28px;
		line-height: 30px;
	}

	.swiper-slide h3 {
		font-size: 18px;
		margin-bottom: clamp(5px, 1vh, 20px)
	}
}

@media (max-height: 860px) {
	
}

@media (max-height: 940px) {

}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 84px;
	position: absolute;
	bottom: 30px;
}

.scroll-indicator__mouse {
    position: relative;
    width: 28px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, 0.98);
    border-radius: 999px;
    box-sizing: border-box;
}

.scroll-indicator__mouse::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.015)
    );
}

.scroll-indicator__track {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 30px;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 999px;
}

.scroll-indicator__dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
    animation: scrollDot 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        transform: translateX(-50%) translateY(16px) scale(0.95);
        opacity: 1;
    }
    75% {
        transform: translateX(-50%) translateY(22px) scale(0.88);
        opacity: 0.35;
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0;
    }
}