:root {
    --blue: #00BCE3;
    --black: #000000;
    --cream: #FBF3E7;
    --font-body: 'Poppins', sans-serif;
    --font-title-v1: 'IBM Plex Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-title-v1);
    font-weight: 600 !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
p {
    margin: 0;
}

a:visited {
    color: #fff !important;
}

/* ===== Page canvas (Figma 1920 desktop) ===== */

.align-items-end {
    align-items: flex-end;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-12 {
    width: 100%;
    flex: 0 0 100%;
}

.col-lg-6 {
    width: 50%;
    flex: 0 0 50%;
}

.col-lg-4 {
    width: 33.333333%;
    flex: 0 0 33.333333%;
}

.col-lg-8 {
    width: 66.666667%;
    flex: 0 0 66.666667%;
}

@media (max-width: 991.98px) {

    .col-lg-6,
    .col-lg-4,
    .col-lg-8 {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* ============================================================
    Header SECTION
============================================================ */

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0px;
}

ul.nav-menu li>a {
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
}

.site-header {
    position: relative;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 25px 0px;
}

.site-header.cloh-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: clohSlideDown 0.5s ease both;
    padding: 10px 0px;
    background-color: #009fc2;
}

@keyframes clohSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.site-header {
    opacity: 0;
    transform: translateY(-100%);
}

.site-header.cloh-loaded {
    animation: clohSlideDown 1.2s ease-out forwards;
}

.cloh-sticky .site-branding img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(24%) saturate(0%) hue-rotate(165deg) brightness(106%) contrast(101%);
}

@keyframes clohSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

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

.site-header.cloh-loaded {
    animation: clohSlideDown 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--black);
    color: #fff;
    padding: clamp(3rem, 6vw, 4.5rem) 0 2.2rem;
    border-radius: 140px 140px 0px 0px;
    margin-top: -140px;
    z-index: 1;
    position: relative;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem 3rem;
    justify-content: space-between;
}

.footer__inner {
    max-width: 80%;
}

.footer__logo {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.footer__menu ul,
.footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    list-style: none;
}

.footer__menu a,
.footer__list a {
    font-size: clamp(.85rem, calc(16 * var(--fpx)), 16px);
    color: rgba(255, 255, 255, .75);
    transition: color .3s;
}

.footer__menu a:hover,
.footer__list a:hover {
    color: var(--cyan-3);
}

.footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin: 2.4rem 0 .6rem;
}

.footer__copy {
    font-size: clamp(.7rem, calc(12 * var(--fpx)), 12px);
    color: var(--blue)
}


/* ============================================================
     HERO SECTION
  ============================================================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 1250px;
    overflow: hidden;
    margin-top: -123px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* blinds cover — strips injected by JS, same mechanic as reference site */

.hero-blinds {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.blind-strip {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--blue);
    transform-origin: left center;
    transform: rotateY(0deg);
}

.hero-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 140px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    margin: 0px;
    font-family: var(--font-title-v1);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-content h1>* {
    font-family: var(--font-title-v1);
}

.hero-content h1 .char {
    font-family: var(--font-title-v1);
    will-change: transform, opacity;
    line-height: 1.3;
}

.char {
    font-family: var(--font-title-v1);
}

.hero-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 auto 28px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-btn {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 30px;
    border: 1px solid #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background: #009fc2;
    transform: translateY(-2px);
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    max-width: 92%;
    height: 340px;
    background: var(--cream);
    border-radius: 700px 700px 0 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 70px;
    transition: none !important;
}

.hero-curve h2 {
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black);
    max-width: 720px;
}

.dot {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    z-index: 4;
}

.dot-2 {
    width: 26px;
    height: 26px;
    bottom: 10px;
    right: 12%;
    border-color: var(--blue);
}

/* ============================================================
     ABOUT SECTION
  ============================================================ */
.about {
    position: relative;
    width: 100%;
    min-height: 1000px;
    background: var(--cream);
    overflow: hidden;
    padding: 110px 40px 130px;
}

.blob {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.blob svg {
    display: block;
    width: 100%;
    height: 100%;
}

.blob-1 {
    top: 4%;
    left: 25%;
    width: 60px;
    height: 50px;
}

.blob-2 {
    top: 12%;
    right: 6%;
    width: 210px;
    height: 190px;
}

.blob-3 {
    top: 34%;
    left: 4%;
    width: 190px;
    height: 170px;
}

.blob-4 {
    top: 42%;
    right: 20%;
    width: 46px;
    height: 40px;
}

.blob-5 {
    bottom: 30%;
    left: 22%;
    width: 90px;
    height: 78px;
}

.blob-6 {
    bottom: 10%;
    right: 12%;
    width: 110px;
    height: 96px;
}

.about-media {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto 70px;
    z-index: 2;
}

.about-media .reveal-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    clip-path: circle(0% at 50% 50%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
}

.about-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-copy p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 26px;
}

.about-copy .brand {
    color: var(--blue);
    font-weight: 700;
    font-size: 40px;
}

.features {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #111;
}

.features-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.features-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* top-left "Fashion for the entire family" tag */

.features-tag {
    position: absolute;
    top: 34px;
    left: 40px;
    z-index: 2;
    background: rgba(10, 45, 55, 0.55);
    backdrop-filter: blur(2px);
    padding: 22px 26px;
    max-width: 190px;
}

.features-tag p {
    font-weight: 600;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #dfe9ec;
    text-transform: uppercase;
}

/* row of 3 feature columns */
.features-row {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    padding: 0 60px;
}

.feature-col {
    width: 260px;
    text-align: center;
    color: #fff;
}

.feature-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.4;
}

.feature-label {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 26px;
    margin-bottom: 18px;
}

.feature-col p.feature-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #f2f2f2;
}


.style-section {
    position: relative;
    width: 100%;
    background: var(--cream, #FBF3E7);
    padding: 110px 0 100px;
    overflow: hidden;
}

.style-heading {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--black, #000);
    max-width: 620px;
    margin: 0 0 40px 60px;
}

.style-heading .char {
    will-change: transform, opacity;
}

/* ---------- carousel viewport ---------- */

.style-carousel-viewport {
    overflow: hidden;
    padding-left: 60px;
}

.style-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.style-card {
    position: relative;
    width: 300px;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
}

.style-card .style-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    display: block;
}

.style-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
    pointer-events: none;
}

.style-card-label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.01em;
}

/* ---------- bottom controls row ---------- */
.style-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 120px);
    margin: 34px 60px 0;
}

.style-cta {
    display: inline-flex;
    align-items: center;
    background: var(--blue, #00BCE3);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.style-cta:hover {
    background: #009fc2;
    transform: translateY(-2px);
}

.style-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.style-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.style-arrow svg {
    width: 16px;
    height: 16px;
}

.style-arrow--prev {
    background: transparent;
    border: 1.5px solid #c9c2b4;
}

.style-arrow--prev svg {
    stroke: #8a8474;
}

.style-arrow--next {
    background: var(--blue, #00BCE3);
}

.style-arrow--next svg {
    stroke: #fff;
}

.style-arrow:active {
    transform: scale(0.92);
}

.style-arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ============================================================
     HERO CURVE (transition shape between Hero & About)
============================================================ */
.cloh-hero-curve {
    position: absolute;
    bottom: -230px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    max-width: 95%;
    height: 669px;
    background: #FFFBF2;
    border-radius: 700px 700px 0 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 70px;
}

.cloh-hero-curve-heading {
    font-weight: 600;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--black);
    position: absolute;
    top: 198px;

}

.cloh-hero-curve-dot {
    position: absolute;
    width: 26px;
    height: 26px;
    bottom: 10px;
    right: 12%;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    z-index: 4;
}

/* ============================================================
     SECTION 2 — ABOUT
============================================================ */
.cloh-about {
    position: relative;
    width: 100%;
    min-height: 1000px;
    background: #FFFBF2;
    overflow: hidden;
    padding: 110px 40px 130px;
}

.cloh-about-blob {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.cloh-about-blob svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cloh-blob-1 {
    top: 4%;
    left: 25%;
    width: 65px;
    height: 59px;
}

.cloh-blob-2 {
    top: 12%;
    right: 6%;
    width: 210px;
    height: 190px;
}

.cloh-blob-3 {
    top: 47%;
    left: 4%;
    width: 226px;
    height: 191px;
}

.cloh-blob-4 {
    top: 47%;
    right: 26%;
    width: 46px;
    height: 40px;
}

.cloh-blob-5 {
    bottom: 30%;
    left: 17%;
    width: 123px;
    height: 111px;
}

.cloh-blob-6 {
    bottom: 10%;
    right: 12%;
    width: 178px;
    height: 134px;
}

.cloh-about-media {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cloh-about-reveal {
    position: relative;
    max-width: 708px;
    margin: auto;
}

.cloh-about-media span {
    font-size: 200px;
    color: #00BEE74D;
    font-family: var(--font-title-v1);
}

.page-template-home-v2-templates .cloh-about-media span {
    font-family: var(--font-title-v2);
}

.cloh-about-copy {
    position: relative;
    z-index: 2;
    max-width: 775px;
    margin: 0 auto;
    text-align: center;
}

.cloh-about-copy p {
    font-size: 20px;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 26px;
}

/* ============================================================
     SECTION 3 — FEATURES
============================================================ */
.cloh-features {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 120px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cloh-features-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cloh-features-tag {
    position: absolute;
    top: 34px;
    left: 40px;
    z-index: 2;
    background: rgba(10, 45, 55, 0.55);
    backdrop-filter: blur(2px);
    padding: 22px 26px;
    max-width: 190px;
}

.cloh-features-tag p {
    font-weight: 600;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #dfe9ec;
    text-transform: uppercase;
}

.cloh-features-row {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 115px;
    padding: 0 60px;
}

.cloh-feature-col {
    width: 260px;
    text-align: center;
    color: #fff;
}

.cloh-feature-icon {
    height: 90px;
    margin: 0 auto 38px;
}

.cloh-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.4;
}

.cloh-feature-label {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 58px;
    margin-bottom: 18px;
}

.cloh-feature-col p.cloh-feature-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #EEF1F5;
}

.cloh-style-section {
    position: relative;
    width: 100%;
    background: #F3F0E7;
    padding: 140px 0 140px;
    overflow: hidden;
}

.cloh-style-heading {
    font-weight: 600;
    font-style: normal;
    font-size: 96px;
    line-height: 94px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    vertical-align: middle;
    color: var(--black, #000);
    max-width: 900px;
    margin: 0 0 40px 300px;
}

/* ---------- carousel viewport ---------- */
.cloh-style-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 300px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
}

.cloh-style-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.cloh-style-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.cloh-style-card {
    position: relative;
    width: 300px;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
}

.cloh-style-card .cloh-style-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
}

.cloh-style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.cloh-style-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
    pointer-events: none;
}

.cloh-style-card-label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    font-weight: 500;
    font-style: normal;
    font-size: 60px;
    line-height: 56px;
    font-family: var(--font-title-v1);
    letter-spacing: -0.77px;
    vertical-align: middle;
}

/* ---------- bottom controls row ---------- */
.cloh-style-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 120px);
    margin: 34px 300px 0;
}

.cloh-style-cta {
    display: inline-flex;
    align-items: center;
    background: var(--blue, #00BCE3);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cloh-style-cta:hover {
    background: #009fc2;
    transform: translateY(-2px);
}

.cloh-style-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cloh-style-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
    padding: 0px;
}

.cloh-style-arrow svg {
    width: 18px;
    height: 18px;
}

.cloh-style-arrow--prev {
    background: transparent;
    border: 1.5px solid #c9c2b4;
}

.cloh-style-arrow--prev svg {
    stroke: #8a8474;
}

.cloh-style-arrow--next {
    background: var(--blue, #00BCE3);
}

.cloh-style-arrow--next svg {
    stroke: #fff;
}

.cloh-style-arrow:active {
    transform: scale(0.92);
}

.cloh-style-arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}



.cloh-showcase {
    position: relative;
    width: 100%;
    background-image: url('/wp-content/uploads/2026/08/cloths-images-bg.webp');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 220px;
}

/* ---------- Hangers (outline only, no fill) ---------- */

.cloh-hanger {
    position: absolute;
    fill: none;
    z-index: 2;
}

.cloh-hanger-1 {
    top: 9px;
    right: 8%;
    height: 220px;
}

.cloh-hanger-2 {
    top: 470px;
    left: 0px;
}

.cloh-item-3 {
    padding-top: 150px;
}

.cloh-hanger-3 {
    right: 0%;
    top: 30%;
}

.cloh-hanger-4 {
    left: 0px;
    bottom: 35%;
}

/* ---------- Showcase items ---------- */
.cloh-showcase-item {
    width: 518px;
    position: relative;
}

.cloh-showcase-item img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cloh-showcase-blob {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.cloh-showcase-blob svg {
    width: 100%;
    height: 100%;
}

/* Item 1: Kids — blob peeks bottom-right */
.cloh-item-kids {}

.cloh-item-kids .cloh-showcase-blob {
    top: 0px;
    left: 30px;
}

/* Item 2: Doorway — blob peeks left */
.cloh-item-doorway {
    margin: auto;
    margin-right: 0px;
}

.cloh-item-doorway .cloh-showcase-blob {
    top: 60px;
    left: -35px;
}

.cloh-item-doorway .cloh-showcase-blob svg {
    width: 80%;
    height: 80%;
}

/* Item 3: Man — blob peeks bottom-right */
.cloh-item-man {}

.cloh-item-man .cloh-showcase-blob {
    top: 40px;
    left: 130px;
}

.cloh-item-man .cloh-showcase-blob svg {
    width: 90%;
    height: 90%;
}

.cloh-heading-lookaround {
    text-align: right;
    padding: 200px 0px;
}

/* Item 4: Woman green top — blob peeks bottom-left */
.cloh-item-woman2 {
    margin: auto;
    margin-right: 0px;
}

.cloh-item-woman2 .cloh-showcase-blob {
    top: 15px;
    left: -30px;
}

/* ---------- Shared heading typography ---------- */
.cloh-showcase-heading {
    font-weight: 600;
    font-size: 140px;
    line-height: 68px;
    letter-spacing: -0.36px;
    color: var(--blue, #00BCE3);
    margin: 0;
    text-transform: uppercase;
}

/* ---------- Bottom giant blob ---------- */
.cloh-showcase-bottom {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: -7px;
    padding-top: 120px;
}

.cloh-showcase-bottom-blob {}

.cloh-showcase-bottom-text {
    position: absolute;
    z-index: 2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.cloh-showcase-bottom-text h2 {
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: #fff;
}

.cloh-script {
    font-weight: 400;
    text-transform: none;
    font-family: 'Bill Smith';
}

.cloh-script .char {
    font-family: 'Bill Smith';
}

/* ============================================================
     SECTION 6 — VIDEO SHOWCASE
============================================================ */
.cloh-video-showcase {
    padding-top: 220px;
    padding-bottom: 220px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

.cloh-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cloh-video-row {
    position: relative;
    align-items: center;
    z-index: 2;
}

/* ---------- Left: play button ---------- */
.cloh-video-col-media {
    text-align: center;
}

.cloh-video-play-btn svg {
    margin-left: 4px;
    cursor: pointer;
}

/* ---------- Right: content ---------- */
.cloh-video-col-content {
    position: relative;
}

.cloh-video-col-content p {
    color: #fff;
    font-size: 20px;
}

.cloh-video-heading {
    font-weight: 600;
    font-style: normal;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #EEF1F5;
    text-align: left;
    margin-bottom: 35px;
}

.cloh-video-cta {
    display: inline-flex;
    align-items: center;
    background: var(--blue, #00BCE3);
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cloh-video-cta:hover {
    background: #009fc2;
    transform: translateY(-2px);
}

/* ============================================================
     SECTION 7 — TESTIMONIALS
============================================================ */
.cloh-testimonials {
    padding-top: 220px;
    padding-bottom: 330px;
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* ---------- Hangers ---------- */
.cloh-testi-hanger {
    position: absolute;
    width: auto;
    height: 299px;
    z-index: 1;
}

.cloh-testi-hanger-1 {
    top: 50px;
    left: 0%;
}

.cloh-testi-hanger-2 {
    top: 30%;
    right: 0%;
}

.cloh-testi-hanger-3 {
    left: 0%;
    bottom: 40%;
}

.cloh-testi-hanger-4 {
    right: 5%;
    bottom: 5%;
}

/* ---------- Grid wrapper ---------- */
.cloh-testi-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* ---------- Bags ---------- */
.cloh-testi-bag {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    width: 300px;
    height: 440px;
}

.cloh-testi-bag-svg {
    display: block;
    width: 100%;
    height: auto;
}

.cloh-testi-bag-svg path:not(:first-child) {
    fill: none;
}

.cloh-testi-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 78%;
    text-align: center;
}

.cloh-testi-title {
    font-weight: 500;
    font-size: 18px;
    color: var(--black, #000);
    margin-bottom: 12px;
}

.cloh-testi-quote {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 18px;
}

.cloh-testi-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.cloh-testi-stars svg {
    width: 16px;
    height: 16px;
}

.cloh-testi-bag-1 {
    margin-top: 100px;
}

.cloh-testi-bag-2 {
    margin: auto;
    margin-right: 0px;
}

/* ---------- Center heading + logo ---------- */

.cloh-testi-center {
    width: 100%;
    max-width: 80%;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.cloh-testi-heading {
    font-weight: 700;
    font-size: 96px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #363636;
    margin-bottom: 24px;
}

.cloh-testi-logo img {
    height: 115px;
}

/* ============================================================
     SECTION 8 — GET IN TOUCH / CONTACT FORM
============================================================ */

.cloh-getintouch-section {
    position: relative;
    width: 100%;
    background-size: cover;
    padding: 150px 0 170px;
    z-index: 1;
    background: var(--blue)
}

.cloh-getintouch-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cloh-getintouch-row {
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* ---------- Left info ---------- */
.cloh-getintouch-info {
    padding-top: 0px;
    padding-right: 100px;
    position: relative;
}

h2.cloh-getintouch-heading {
    font-size: 62px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 60px;
}

.cloh-getintouch-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    max-width: 420px;
}

/* ---------- Right form ---------- */
.cloh-getintouch-form-wrap {
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
}

.cloh-getintouch-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

.cloh-getintouch-form p {
    margin-bottom: 0px;
    position: relative;
}

.cloh-getintouch-form p label+br {
    display: none;
}

.cloh-getintouch-input,
.cloh-getintouch-select,
.cloh-getintouch-textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    background: #fff;
    border: none;
    border-radius: 25px !important;
    padding: 18px 26px !important;
    font-size: 15px;
    color: #363636;
    outline: none;
    margin: 0;
}

.cloh-getintouch-textarea {
    border-radius: 24px;
    resize: none;
    height: 145px;
}

.cloh-getintouch-label {
    color: #fff;
    font-size: 14px;
    margin: 0px 0 6px;
    display: block;
}

.cloh-getintouch-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 26px center;
    cursor: pointer;
}

.cloh-getintouch-file {
    color: #fff;
    font-size: 14px;
}

.cloh-getintouch-submit {
    align-self: flex-start;
    background: transparent;
    color: #fff !important;
    border: 1.5px solid #fff !important;
    border-radius: 30px !important;
    padding: 14px 36px !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background-color: transparent !important;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 0;
}

.cloh-getintouch-submit:hover {
    background: #fff !important;
    color: #000 !important;
}

.post,
.page {
    margin: 0px !important;
}

.cloh-showcase-heading {
    line-height: 1.2;
}

/* ============================================================
    Products
============================================================ */
.products-hero-banner {
    position: relative;
    overflow: unset !important;
}

.products-hero-banner::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: #00000099;
}

.products-cloh-about {
    min-height: auto;
    padding-top: 230px;
}

.cloh-product-curve-heading {
    color: var(--blue);
}

.products-cloh-about img {
    height: 400px;
    width: 80%;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
}

.product-slider-section {
    background-color: #EEE5CF;
    padding-top: 150px;
    padding-bottom: 130px;
}

.product-slider-heading h2 {
    font-weight: 600;
    font-size: 96px;
    text-align: center;
    vertical-align: middle;
    color: #00BCE3;
    line-height: 1.2;
}

.category-slider {
    width: 100%;
    padding: 30px 0 20px;
}

.category-item {
    text-align: center;
    padding: 40px 0px;
    transition: all .45s ease;
}

.image-wrap {
    position: relative;
    width: 100%;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1),
        box-shadow .5s ease;
}

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

.image-wrap span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.05;
    text-align: left;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    text-align: center;
}

.category-item h3 {
    margin: 28px 0 0;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

/* CENTER ITEM */
.category-item.center {
    position: relative;
    z-index: 5;
}

.category-slider .owl-item.center .image-wrap {
    transform: scale(1.1);
}

.category-slider .owl-item.center h3 {
    transform: translateY(20px);
}

/* Side items */
.category-slider .owl-item:not(.center) .image-wrap {
    transform: scale(.8);
    opacity: .95;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.owl-item {
    transition: all .5s ease;
}

.find-store-section {
    padding-top: 173px;
    padding-bottom: 200px;
    background-color: #F3F0E7;
    position: relative;
}

.find-store-section .product-slider-heading {
    text-align: center;
    padding-bottom: 120px;
}

.find-store-section .product-slider-heading h2 {
    padding-bottom: 40px;
    text-transform: uppercase;
}

.find-store-section .product-slider-heading p {
    margin: auto;
    margin-bottom: 20px;
}

.find-store-section .find-store-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.find-store-section .find-store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.product-hangar {
    position: absolute;
    width: auto;
}

.product-hangar-02 {
    right: 0px;
}

.product-hangar-04 {
    right: 90px;
}

.product-hangar-03 {
    bottom: 100px;
}

.product-cloh-about-media {
    text-align: center;
    height: 500px;
    background-repeat: no-repeat;
    width: 90%;
    border-radius: 30px;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    margin: auto;
    margin-bottom: 50px;
}

.products-cloh-about {
    min-height: auto;
    padding-bottom: 220px;
}

.products-hero-banner p {
    margin-top: 38px;
}

.products-hero-banner .cloh-hero-curve {
    height: 609px;
}

.products-cloh-about .cloh-blob-1 {
    right: 18%;
    left: unset;
    top: 0%;
}

.products-cloh-about .cloh-blob-5 {
    bottom: unset;
    left: 9%;
    width: 123px;
    height: 131px;
    top: 22%;
}

.products-cloh-about .cloh-blob-3 {
    top: unset;
    left: 4%;
    width: 226px;
    height: 191px;
    bottom: 10%;
}

.masonry-gallery {
    width: 100%;
}

.masonry-grid {
    column-count: 4;
    gap: 0px;
}

.masonry-item {
    display: block;
    width: 100%;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
    height: 350px;
}

.masonry-item:hover img {
    transform: scale(1.04);
}

.masonry-item {
    position: relative;
    overflow: hidden;
}

.gallery-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.35s ease;
}

.masonry-item:hover .gallery-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gallery-content h3 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1, 3;
    color: #fff;
    text-align: center;
}

.gallery-content p,
.gallery-content a {
    margin: 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.gallery-content a:hover {
    color: var(--blue);
}

/* Store Page */
.location-slider-section {
    position: relative;
    z-index: 11;
    padding-top: 100px;
    background-color: #FFFBF2;
}

.loaction-info {
    text-align: center;
    position: relative;
}

.loaction-info p {
    font-size: 24px;
}

.loaction-shap-1 {
    position: absolute;
}

.loaction-shap-2 {
    position: absolute;
    right: 0px;
    top: -50px;
}

.loaction-shap-3,
.loaction-shap-4 {
    text-align: center;
}

.location-card-slider {
    padding-top: 150px;
}

.store-name h3 {
    color: var(--blue);
    font-size: 51.2px;
    line-height: 1.2;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.strore-addresas p:first-child {
    margin-bottom: 10px;
}

.strore-addresas p,
.strore-addresas a {
    color: #1E1E1E;
}

.strore-addresas a:hover {
    color: var(--blue);
}

.strore-addresas:not(:last-child) {
    margin-bottom: 20px;
}

.store-bottom-shap {
    padding: 100px 0px;
}

.store-bottom-shap .row {
    justify-content: center;
}

/* Map Section */
.google-map-section {
    padding: 118px 0px;
    background-color: #F6F5F5;
    overflow: hidden;
}

.google-map-section iframe {
    width: 100%;
    height: 825px;
    border-radius: 64px;
    right: -60px;
    position: relative;
}

.map-heaidng {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
}

.map-heaidng h2 {
    font-size: 51.2px;
    color: var(--blue);
    line-height: 1.2;
}

.google-map-section .map-itemn-1,
.google-map-section .map-itemn-2,
.google-map-section .map-itemn-3 {
    display: none;
}

.google-map-section .map-itemn-1.active,
.google-map-section .map-itemn-2.active,
.google-map-section .map-itemn-3.active {
    display: block;
}

.cloh-product-curve-heading {
    top: 130px;
}

.store-content {
    text-align: center;
}

.hero-blinds .blind-strip {
    background: transparent;
}

.hero-blinds.scrolled .blind-strip {
    background: var(--blue);
}

.find-bottom-address {
    padding-top: 60px;
    text-align: center;
}

.find-bottom-address strong {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--blue);
}

.find-bottom-address p {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 0px;
}

/* =========================================
   DESKTOP
========================================= */

/* ============================================================
    Header Responsive
============================================================ */
@media (max-width:1024px) {
    ul.nav-menu li>a {
        padding: 13px 11px;
    }
}

/* =========================================
   HAMBURGER
========================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 10002;
    margin: auto;
    margin-right: 0px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: #ffff;
    transition: all 0.3s ease;
}

/* =========================================
   MOBILE - BELOW 768px
========================================= */
@media (min-width: 768px) {
    button.menu-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 10px 10px;
    }

    .header-grid {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    ul.nav-menu {
        justify-content: flex-start;
        width: 80%;
    }

    /* Mobile menu */
    .primary-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 85%);
        height: 100vh;
        padding: 100px 30px 40px;
        transform: translateX(-100%);
        visibility: hidden;
        transition:
            transform 0.45s cubic-bezier(0.77, 0, 0.175, 1),
            visibility 0.45s ease;
        z-index: 10000;
        box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
    }

    /* Open menu */
    .main-navigation.menu-open .primary-menu {
        transform: translateX(0);
        visibility: visible;
    }

    /* Mobile menu items */
    .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background-color: var(--blue);
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        opacity: 0;
        transform: translateX(-20px);
        transition:
            opacity 0.35s ease,
            transform 0.35s ease;
    }

    /* Animate menu items when opened */
    .main-navigation.menu-open .primary-menu li {
        opacity: 1;
        transform: translateX(0);
    }


    .primary-menu li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .primary-menu li:nth-child(2) {
        transition-delay: 0.12s;
    }

    .primary-menu li:nth-child(3) {
        transition-delay: 0.16s;
    }

    .primary-menu li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .primary-menu li:nth-child(5) {
        transition-delay: 0.24s;
    }

    .primary-menu a {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
        z-index: 9998;
    }

    .main-navigation.menu-open~.menu-overlay {
        opacity: 1;
        visibility: visible;
    }


    /* =========================================
	   HAMBURGER -> X
	========================================= */

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

    .main-navigation.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

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

    /* Prevent page scrolling */
    body.menu-is-open {
        overflow: hidden;
    }

    .site-header.cloh-sticky {
        padding: 10px 10px;
    }

    .find-store-section .product-slider-heading h2 {
        font-size: 32px;
    }
}

/* ============================================================
    1480px Responsive
============================================================ */
@media (max-width: 1480px) {
    .cloh-blob-5 {
        bottom: 23%;
        left: 6%;
    }

    .cloh-blob-4 {
        top: 47%;
        right: 16%;
    }

    .cloh-blob-6 {
        bottom: 3%;
        right: 6%;
    }

    .cloh-showcase .container {
        padding: 0 15px;
    }

    .cloh-hanger-2 {
        top: 15%;

    }

    .cloh-hanger {
        height: 176px;
    }

    .cloh-hanger-3 {
        right: 0%;
    }

    .cloh-showcase-heading {
        font-size: 120px;
    }

    .cloh-showcase-bottom-blob {
        width: auto;
        height: 90%;
    }

    .cloh-showcase-bottom-blob {
        width: 90%;
        height: 780px;
    }

    .cloh-showcase-bottom-text {
        top: 37%;
    }

    .cloh-video-showcase {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .cloh-getintouch-section .container {
        padding: 0 15px;
    }

    .cloh-getintouch-section {
        padding: 80px 0 170px;
    }

    .cloh-style-heading {
        margin: 0 0 40px 130px;
    }

    .cloh-style-carousel-viewport {
        padding-left: 130px;
    }

    .cloh-showcase {
        padding-top: 140px;
    }

    .cloh-heading-lookaround {
        padding: 90px 0px;
    }

    .find-store-section .col-12 {
        padding: 0 15px;
    }

    .google-map-section iframe {
        height: 525px;
    }

}

/* ============================================================
    1480px Responsive
============================================================ */
@media (max-width: 1300px) {
    .hero-content h1 {
        font-size: 100px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 8px 30px;
    }

    .cloh-style-heading {
        font-size: 76px;
    }

    .cloh-showcase-bottom-text h2 {
        font-size: 76px;
    }

    .cloh-showcase-bottom-blob {
        width: 100%;
        height: 660px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .masonry-grid {
        column-count: 3;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .masonry-grid {
        column-count: 1;
    }
}

@media (max-width: 1024px) {
    .cloh-video-showcase {
        height: auto;
    }

    .cloh-video-row {
        flex-direction: column;
    }

    .cloh-video-col {
        width: 100%;
        padding: 60px 30px;
        text-align: center;
    }

    .cloh-video-col-content {
        align-items: center;
    }

    .cloh-video-heading {
        font-size: 36px;
        line-height: 38px;
        text-align: center;
    }

    .cloh-testimonials {
        min-height: auto;
        padding: 60px 20px;
    }

    .cloh-testi-bag {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 30px auto;
    }

    .cloh-testi-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 30px auto;
    }

    .cloh-testi-hanger {
        display: none;
    }

    .cloh-getintouch-row {
        flex-direction: column !important;
        padding: 0 30px !important;
    }

    .cloh-getintouch-info {
        width: 100% !important;
        max-width: 100% !important;
    }

    .cloh-getintouch-heading {
        font-size: 36px;
    }

    .cloh-getintouch-form-wrap {
        width: 100% !important;
        max-width: 100% !important;
    }

    .cloh-features-row {
        gap: 50px;
    }

    .features-row {
        gap: 50px;
    }

    .feature-col {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .image-wrap span {
        font-size: 16px;
    }

    .category-item h3 {
        font-size: 32px;
    }

    .category-item.center .image-wrap {
        transform: scale(1.12);
    }

    .products-hero-banner .cloh-hero-curve {
        height: 249px;
        bottom: -60px;
    }

    .cloh-about.products-cloh-about {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 150px;
    }

    .product-cloh-about-media {
        height: 260px;
        width: 100%;
        border-radius: 50px;
        background-size: cover;
        background-position: center 13%;
        background-attachment: unset;
    }

    .products-cloh-about .cloh-blob-3 {
        left: -17%;
        width: 176px;
        height: auto;
        bottom: 2%;
    }

    .products-cloh-about .cloh-blob-6 {
        bottom: -2%;
        right: -12%;
        width: 148px;
        height: auto;
    }

    .products-cloh-about .cloh-blob-5 {
        bottom: unset;
        left: -8%;
        width: 123px;
        height: 60px;
        top: 6%;
    }

    .products-cloh-about .cloh-about-copy p br {
        display: none;
    }

    .products-cloh-about .cloh-about {
        min-height: 660px;
    }

    .products-hero-banner .hero-content p {
        width: 83%;
    }

    .products-hero-banner .hero-btn {
        width: 80%;
    }

    .cloh-product-curve-heading {
        top: 167px;
    }

    .loaction-info p {
        font-size: 16px;
    }

    .location-slider-section {
        padding-top: 50px;
    }

    .loaction-shap-1 svg,
    .loaction-shap-2 svg {
        width: 30%;
    }

    .location-card-slider {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .store-name h3 {
        font-size: 32px;
    }

    .page-id-15 .hero-banner {
        background-position: 10%;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        height: 852px;
    }

    .hero-content h1 {
        font-size: 42px;
        width: 53%;
        margin: auto;
        margin-bottom: 30px;
    }

    .hero-content p {
        font-size: 20px;
        width: 53%;
        margin: auto;
        margin-bottom: 20px;
    }

    .cloh-hero-curve-heading {
        font-size: 24px;
        line-height: 1.2;
        top: 98px;
    }

    .cloh-hero-curve {
        width: 100%;
        height: 489px;
    }

    .cloh-about {
        padding-top: 0px;
    }

    .cloh-features-row {
        flex-wrap: wrap;
    }

    .cloh-style-heading {
        font-size: 32px;
        line-height: 1.2;
        margin-left: 0px;
        text-align: center;
    }

    .cloh-style-carousel-viewport {
        padding-left: 0px;
    }

    .cloh-hanger-1,
    .cloh-hanger-2,
    .cloh-hanger-3,
    .cloh-hanger-4 {
        height: 70px;
    }

    .cloh-showcase-item {
        width: 70%;
    }

    .cloh-showcase-heading {
        font-size: 32px;
    }

    .cloh-showcase {
        padding-top: 110px;
    }

    .cloh-showcase-heading {
        line-height: 1.2;
        text-align: right;
        padding-top: 70px;
        padding-right: 20px;
    }

    .cloh-item-3 {
        padding-top: 60px;
    }

    .cloh-item-man .cloh-showcase-blob {
        top: 20px;
        left: 60px;
    }

    .cloh-heading-lookaround {
        padding-bottom: 40px;
    }

    .cloh-showcase-bottom-blob {
        width: 100%;
    }

    .cloh-showcase-bottom-text h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .cloh-showcase-bottom-blob {
        width: 100%;
        height: 100%;
    }

    .cloh-video-showcase {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .cloh-testi-heading {
        font-size: 32px;
    }

    .cloh-blob-6 {
        bottom: 3%;
        right: 10%;
        width: 78px;
        height: auto;
    }

    .cloh-blob-5 {
        bottom: 4%;
        left: -3%;
        width: 123px;
        height: auto;
    }

    .cloh-blob-3 {
        top: 17%;
        left: 4%;
        width: 126px;
        height: auto;
    }

    .cloh-blob-4 {
        top: 5%;
        right: 6%;
        width: 46px;
        height: 40px;
    }

    .cloh-blob-2 {
        top: 12%;
        right: 4%;
        width: 160px;
        height: auto;
    }

    .footer__inner {
        max-width: 80%;
        text-align: center;
    }

    nav.footer__menu {
        display: none;
    }

    .footer__top {
        justify-content: center;
    }

    .cloh-getintouch-info {
        padding-top: 0px;
        padding-right: 0px;
        position: relative;
        margin-bottom: 30px;
    }

    h2.cloh-getintouch-heading {
        font-size: 44px;
        margin: 0 0 30px;
    }

    .cloh-features,
    .cloh-video-showcase {
        background-attachment: unset;
    }

    .cloh-video-col {
        width: 100%;
        padding: 30px;
    }

    .cloh-about-copy p {
        font-size: 16px;
    }

    .cloh-style-card img {
        object-position: top;
    }

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

    .cloh-about {
        min-height: 830px;
    }

    .cloh-getintouch-submit {
        width: 100%;
    }

    .cloh-hanger-3 {
        top: 44%;
    }

    .find-store-section .product-slider-heading p br {
        display: none;
    }

    .find-store-section {
        padding-top: 83px;
        padding-bottom: 83px;
    }

    .find-store-section .product-slider-heading {
        width: 83%;
        margin: auto;
    }

    .page-id-19 .find-store-section .product-slider-heading {
        width: 100%;
    }

    img.product-hangar {
        height: 65px;
    }

    .product-hangar-02 {
        top: 5%;
    }

    .product-hangar-01 {
        display: none;
    }

    .product-hangar-04 {
        display: none;
    }

    .product-hangar-03 {
        bottom: 40%;
    }

    .find-store-section .find-store-img img {
        border-radius: 50px;
    }

    .find-store-section .product-slider-heading {
        padding-bottom: 70px;
    }

    .product-slider-heading h2 {
        font-size: 32px;
    }

    .products-hero-banner h1 {
        width: 100%;
        font-size: 34px;
    }

    .google-map-section iframe {
        height: 250px;
        width: 100%;
        right: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cloh-getintouch-row {
        flex-direction: column !important;
        padding: 0 10px !important;
    }

    .map-heaidng h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .google-map-section {
        padding: 48px 0px;
    }

    .loaction-shap-3 svg {
        width: 80%;
    }

    .loaction-shap-4 svg {
        width: 80%;
    }

    .store-bottom-shap {
        padding: 20px 0px;
    }

    .find-bottom-address p {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    h2.cloh-getintouch-heading {
        font-size: 40px;
    }

    .cloh-video-heading {
        font-size: 32px;
    }

    .hero-content p {
        width: 66%;
    }

    .cloh-style-controls-row {
        margin: 34px 229px 0;
    }
}

@media (max-width: 360px) {
    .products-hero-banner h1 {
        font-size: 28px;
    }

    h2.cloh-getintouch-heading {
        font-size: 34px;
    }
}


.cloh-video-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.cloh-video-popup.active {
    display: flex;
}

.cloh-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.cloh-video-modal {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
}

.cloh-video-modal video {
    display: block;
    width: 100%;
    max-height: 85vh;
    background: #000;
    border-radius: 8px;
}

.cloh-video-close {
    position: absolute;
    right: -45px;
    top: -45px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 768px) {
    .cloh-video-modal {
        width: 94%;
    }

    .cloh-video-close {
        right: 0;
        top: -75px;
    }
}   