/**
 * KRULUXE HOME PAGE
 * FINAL Complete Luxury Responsive Styling
 */


/* =========================================================
   ROOT
========================================================= */

:root {
    --kr-home-black: #0b0b0b;
    --kr-home-charcoal: #151515;
    --kr-home-white: #ffffff;

    --kr-home-ivory: #faf8f2;
    --kr-home-ivory-2: #f2ede3;

    --kr-home-gold: #b88d3b;
    --kr-home-gold-light: #d7b66a;

    --kr-home-text: #161616;
    --kr-home-muted: #6f6f6f;

    --kr-home-border: #e7e1d6;

    --kr-home-max: 1440px;
    --kr-home-radius: 18px;

    --kr-home-shadow:
        0 18px 50px rgba(0, 0, 0, 0.08);

    --kr-home-transition:
        0.28s ease;
}


/* =========================================================
   BASE
========================================================= */

.kr-home-main {
    overflow: hidden;
    background: var(--kr-home-white);
    color: var(--kr-home-text);
}

.kr-home-main *,
.kr-home-main *::before,
.kr-home-main *::after {
    box-sizing: border-box;
}

.kr-home-main img {
    display: block;
    max-width: 100%;
}

.kr-home-container {
    width: min(
        calc(100% - 48px),
        var(--kr-home-max)
    );

    margin-inline: auto;
}

.kr-home-section {
    position: relative;
    padding: 92px 0;
}

.kr-home-main a {
    text-decoration: none;
}

.kr-home-main h1,
.kr-home-main h2,
.kr-home-main h3,
.kr-home-main p {
    margin-top: 0;
}

.kr-home-main h1,
.kr-home-main h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;
    color: var(--kr-home-text);
}

.kr-home-main h3 {
    color: var(--kr-home-text);
}

.kr-home-main p {
    color: var(--kr-home-muted);
    line-height: 1.72;
}


/* =========================================================
   EYEBROW
========================================================= */

.kr-home-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--kr-home-gold);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.kr-home-section-heading {
    max-width: 790px;
    margin-bottom: 46px;
}

.kr-home-section-heading h2 {
    margin-bottom: 16px;

    font-size: clamp(
        38px,
        4.2vw,
        62px
    );

    line-height: 1.04;
}

.kr-home-section-heading p {
    max-width: 660px;
    margin-bottom: 0;
    font-size: 16px;
}


/* =========================================================
   BUTTONS
========================================================= */

.kr-home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 12px;
    margin-top: 28px;
}

.kr-home-btn {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;
    letter-spacing: 0.02em;

    transition:
        background var(--kr-home-transition),
        color var(--kr-home-transition),
        border-color var(--kr-home-transition),
        transform var(--kr-home-transition),
        box-shadow var(--kr-home-transition);
}

.kr-home-btn:hover {
    transform: translateY(-2px);
}

.kr-home-btn-primary {
    background: var(--kr-home-black);
    border-color: var(--kr-home-black);
    color: var(--kr-home-white);
}

.kr-home-btn-primary:hover {
    background: var(--kr-home-gold);
    border-color: var(--kr-home-gold);
    color: var(--kr-home-white);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.12);
}

.kr-home-btn-secondary {
    background: transparent;
    border-color: #bfb8aa;
    color: var(--kr-home-text);
}

.kr-home-btn-secondary:hover {
    border-color: var(--kr-home-gold);
    color: var(--kr-home-gold);
}


/* =========================================================
   HERO SLIDER
========================================================= */

.kr-home-slider {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #fbfaf7 0%,
            #f5f1e8 100%
        );

    border-bottom:
        1px solid var(--kr-home-border);
}

.kr-home-slides {
    position: relative;
    min-height: 620px;
}

.kr-home-slide {
    display: none;
    min-height: 620px;
    opacity: 0;

    transition:
        opacity 0.5s ease;
}

.kr-home-slide.is-active {
    display: block;
    opacity: 1;
}

.kr-home-slide-inner {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 70px;

    min-height: 620px;

    padding-block: 58px;
}

.kr-home-slide-content {
    position: relative;
    z-index: 5;

    padding-left: 54px;
    padding-right: 18px;
}

.kr-home-slide-content h1,
.kr-home-slide-content h2 {
    max-width: 620px;

    margin-bottom: 22px;

    font-size: clamp(
        46px,
        5.1vw,
        74px
    );

    line-height: 0.99;
    letter-spacing: -0.025em;
}

.kr-home-slide-content p {
    max-width: 600px;
    margin-bottom: 0;
    font-size: 17px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.kr-home-slide-visual {
    min-width: 0;
}

.kr-home-hero-image-link {
    position: relative;
    display: block;
    overflow: hidden;

    border-radius: var(--kr-home-radius);

    background: var(--kr-home-white);

    box-shadow: var(--kr-home-shadow);
}

.kr-home-hero-image-link::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(184,141,59,0.08)
        );
}

.kr-home-hero-image {
    width: 100%;
    height: 450px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s ease;
}

.kr-home-hero-image-link:hover
.kr-home-hero-image {
    transform: scale(1.035);
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.kr-home-slider-arrow {
    position: absolute;

    top: 50%;
    z-index: 30;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(0,0,0,0.12);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.96);

    color: var(--kr-home-black);

    font-size: 17px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.08);

    transition:
        background var(--kr-home-transition),
        color var(--kr-home-transition),
        transform var(--kr-home-transition);
}

.kr-home-slider-arrow:hover {
    background: var(--kr-home-black);
    color: var(--kr-home-white);
}

.kr-home-slider-prev {
    left: 8px;
}

.kr-home-slider-next {
    right: 8px;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.kr-home-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 22px;

    z-index: 25;

    display: flex;
    gap: 8px;

    transform: translateX(-50%);
}

.kr-home-slider-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: #bcb6aa;

    cursor: pointer;

    transition:
        width var(--kr-home-transition),
        background var(--kr-home-transition);
}

.kr-home-slider-dot.is-active {
    width: 28px;
    background: var(--kr-home-gold);
}


/* =========================================================
   QUICK COLLECTIONS
========================================================= */

.kr-home-quick {
    background: var(--kr-home-white);
}

.kr-home-quick-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.kr-home-quick-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    border:
        1px solid var(--kr-home-border);

    border-radius:
        var(--kr-home-radius);

    background:
        var(--kr-home-white);

    color:
        var(--kr-home-text);

    transition:
        transform var(--kr-home-transition),
        border-color var(--kr-home-transition),
        box-shadow var(--kr-home-transition);
}

.kr-home-quick-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(184, 141, 59, 0.55);

    box-shadow:
        var(--kr-home-shadow);
}

.kr-home-quick-card > span {
    display: inline-flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    margin-bottom: 38px;

    border:
        1px solid var(--kr-home-border);

    border-radius: 50%;

    color:
        var(--kr-home-gold);

    font-size: 11px;
    font-weight: 700;
}

.kr-home-quick-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.kr-home-quick-card p {
    margin-bottom: 20px;
    font-size: 14px;
}

.kr-home-quick-card strong {
    color:
        var(--kr-home-gold);

    font-size: 13px;
}


/* =========================================================
   DIAMOND SHAPES
========================================================= */

.kr-home-shapes {
    background:
        var(--kr-home-ivory);
}

.kr-home-shape-grid {
    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 12px;
}

.kr-home-shape-card {
    position: relative;
    overflow: hidden;

    padding: 12px 10px 20px;

    border:
        1px solid var(--kr-home-border);

    border-radius:
        16px;

    background:
        var(--kr-home-white);

    color:
        var(--kr-home-text);

    text-align: center;

    transition:
        transform var(--kr-home-transition),
        border-color var(--kr-home-transition),
        box-shadow var(--kr-home-transition);
}

.kr-home-shape-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--kr-home-gold-light);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);
}

.kr-home-shape-image {
    position: relative;

    height: 155px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    margin-bottom: 12px;

    border-radius: 12px;

    background: #fff;
}

.kr-home-shape-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 7px;

    transition:
        transform 0.45s ease;
}

.kr-home-shape-card:hover
.kr-home-shape-image img {
    transform:
        scale(1.06);
}

.kr-home-shape-card h3 {
    margin-bottom: 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: 400;
}

.kr-home-shape-card p {
    margin: 0;

    font-size: 11px;
    line-height: 1.45;
}

.kr-home-center-link {
    margin-top: 34px;
    text-align: center;
}

.kr-home-center-link a {
    display: inline-block;

    padding-bottom: 4px;

    border-bottom:
        1px solid var(--kr-home-gold);

    color:
        var(--kr-home-text);

    font-size: 14px;
    font-weight: 600;

    transition:
        color var(--kr-home-transition);
}

.kr-home-center-link a:hover {
    color:
        var(--kr-home-gold);
}


/* =========================================================
   NATURAL / LAB CHOICE
========================================================= */

.kr-home-diamond-choice {
    background:
        var(--kr-home-white);
}

.kr-home-choice-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    align-items: center;

    gap: 68px;
}

.kr-home-choice-image {
    overflow: hidden;

    border-radius:
        var(--kr-home-radius);

    background:
        var(--kr-home-ivory);

    box-shadow:
        var(--kr-home-shadow);
}

.kr-home-choice-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s ease;
}

.kr-home-choice-image:hover img {
    transform:
        scale(1.035);
}

.kr-home-choice-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1.04;
}

.kr-home-choice-content p {
    max-width: 560px;
    font-size: 16px;
}


/* =========================================================
   NATURAL / LAB TYPE CARDS
========================================================= */

.kr-home-diamond-types {
    background:
        var(--kr-home-ivory);
}

.kr-home-split-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.kr-home-split-card {
    min-height: 390px;

    display: flex;
    align-items: flex-end;

    padding: 44px;

    overflow: hidden;

    border:
        1px solid var(--kr-home-border);

    border-radius:
        var(--kr-home-radius);

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #f3eee5 100%
        );
}

.kr-home-split-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #f8f8f8 0%,
            #ebe8e2 100%
        );
}

.kr-home-split-content {
    max-width: 560px;
}

.kr-home-split-content h2 {
    margin-bottom: 16px;

    font-size:
        clamp(36px, 3.8vw, 54px);

    line-height: 1.06;
}

.kr-home-split-content p {
    margin-bottom: 0;
}


/* =========================================================
   RING BUILDER
========================================================= */

.kr-home-ring-builder {
    background:
        var(--kr-home-white);
}

.kr-home-ring-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    gap: 70px;
    align-items: center;
}

.kr-home-ring-content h2 {
    margin-bottom: 18px;

    font-size:
        clamp(42px, 4.6vw, 64px);

    line-height: 1.02;
}

.kr-home-ring-content > p {
    max-width: 560px;
}

.kr-home-ring-image {
    overflow: hidden;

    border-radius:
        var(--kr-home-radius);

    background:
        var(--kr-home-ivory);

    box-shadow:
        var(--kr-home-shadow);
}

.kr-home-ring-image a {
    display: block;
}

.kr-home-ring-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s ease;
}

.kr-home-ring-image:hover img {
    transform:
        scale(1.035);
}


/* =========================================================
   BUILD YOUR RING STEPS
========================================================= */

.kr-home-step-list {
    margin-top: 30px;

    border-top:
        1px solid var(--kr-home-border);
}

.kr-home-step {
    display: grid;

    grid-template-columns:
        58px minmax(0, 1fr);

    gap: 18px;

    padding: 20px 0;

    border-bottom:
        1px solid var(--kr-home-border);
}

.kr-home-step > span {
    color:
        var(--kr-home-gold);

    font-size: 13px;
    font-weight: 700;
}

.kr-home-step h3 {
    margin-bottom: 5px;
    font-size: 17px;
}

.kr-home-step p {
    margin-bottom: 0;
    font-size: 13px;
}


/* =========================================================
   COLLECTIONS
========================================================= */

.kr-home-collections {
    background:
        var(--kr-home-charcoal);

    color:
        var(--kr-home-white);
}

.kr-home-collections
.kr-home-section-heading h2 {
    color:
        var(--kr-home-white);
}

.kr-home-collections
.kr-home-section-heading p {
    color:
        rgba(255,255,255,0.68);
}

.kr-home-collection-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.kr-home-collection-card {
    position: relative;

    min-height: 330px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius:
        var(--kr-home-radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    color:
        var(--kr-home-white);

    transition:
        transform var(--kr-home-transition),
        border-color var(--kr-home-transition),
        background var(--kr-home-transition);
}

.kr-home-collection-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(215,182,106,0.7);

    background:
        rgba(255,255,255,0.06);
}

.kr-home-collection-card > span {
    margin-bottom: auto;

    color:
        var(--kr-home-gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.kr-home-collection-card h3 {
    margin-bottom: 12px;

    color:
        var(--kr-home-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;
    font-weight: 400;
}

.kr-home-collection-card p {
    color:
        rgba(255,255,255,0.66);

    font-size: 14px;
}

.kr-home-collection-card strong {
    margin-top: 12px;

    color:
        var(--kr-home-gold-light);

    font-size: 13px;
}


/* =========================================================
   FEATURED DIAMOND
========================================================= */

.kr-home-feature-diamonds {
    background:
        var(--kr-home-ivory);
}

.kr-home-feature-diamonds-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    gap: 70px;
    align-items: center;
}

.kr-home-feature-diamonds-image {
    overflow: hidden;

    border-radius:
        var(--kr-home-radius);

    background:
        var(--kr-home-white);

    box-shadow:
        var(--kr-home-shadow);
}

.kr-home-feature-diamonds-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s ease;
}

.kr-home-feature-diamonds-image:hover img {
    transform:
        scale(1.035);
}

.kr-home-feature-diamonds-content h2 {
    margin-bottom: 18px;

    font-size:
        clamp(40px, 4.2vw, 60px);

    line-height: 1.04;
}

.kr-home-feature-diamonds-content p {
    max-width: 560px;
}


/* =========================================================
   TRUST
========================================================= */

.kr-home-trust {
    background:
        var(--kr-home-white);
}

.kr-home-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid var(--kr-home-border);

    border-bottom:
        1px solid var(--kr-home-border);
}

.kr-home-trust-card {
    min-height: 230px;

    padding: 30px;

    border-right:
        1px solid var(--kr-home-border);
}

.kr-home-trust-card:last-child {
    border-right: 0;
}

.kr-home-trust-card > span {
    display: inline-block;

    margin-bottom: 45px;

    color:
        var(--kr-home-gold);

    font-size: 11px;
    font-weight: 700;
}

.kr-home-trust-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.kr-home-trust-card p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   DIAMOND EDUCATION
========================================================= */

.kr-home-education {
    background:
        var(--kr-home-ivory);
}

.kr-home-split-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.78fr);

    gap: 70px;
    align-items: center;
}

.kr-home-education
.kr-home-split-content h2 {
    margin-bottom: 18px;

    font-size:
        clamp(40px, 4.2vw, 60px);

    line-height: 1.04;
}

.kr-home-feature-panel {
    padding: 48px;

    border:
        1px solid var(--kr-home-border);

    border-radius:
        var(--kr-home-radius);

    background:
        var(--kr-home-white);

    box-shadow:
        var(--kr-home-shadow);
}

.kr-home-feature-panel h3 {
    margin-bottom: 16px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(30px, 3vw, 44px);

    font-weight: 400;
    line-height: 1.06;
}

.kr-home-feature-panel a {
    display: inline-block;

    margin-top: 16px;
    padding-bottom: 4px;

    border-bottom:
        1px solid var(--kr-home-gold);

    color:
        var(--kr-home-text);

    font-weight: 600;
}


/* =========================================================
   ABOUT
========================================================= */

.kr-home-about {
    background:
        var(--kr-home-white);
}

.kr-home-about-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 90px;

    align-items: start;
}

.kr-home-about-inner h2 {
    margin-bottom: 0;

    font-size:
        clamp(42px, 4.6vw, 64px);

    line-height: 1.02;
}

.kr-home-about-inner p {
    font-size: 16px;
}

.kr-home-text-link {
    display: inline-block;

    margin-top: 12px;
    padding-bottom: 4px;

    border-bottom:
        1px solid var(--kr-home-gold);

    color:
        var(--kr-home-text);

    font-weight: 600;
}


/* =========================================================
   FINAL CTA
========================================================= */

.kr-home-final-cta {
    padding: 74px 0;

    background:
        linear-gradient(
            120deg,
            #eee7d8,
            #f8f5ed
        );

    border-top:
        1px solid var(--kr-home-border);
}

.kr-home-final-cta-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 48px;

    align-items: center;
}

.kr-home-final-cta h2 {
    max-width: 720px;

    margin-bottom: 14px;

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1.04;
}

.kr-home-final-cta p {
    margin-bottom: 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.kr-home-btn:focus-visible,
.kr-home-quick-card:focus-visible,
.kr-home-shape-card:focus-visible,
.kr-home-collection-card:focus-visible,
.kr-home-text-link:focus-visible,
.kr-home-slider-arrow:focus-visible,
.kr-home-slider-dot:focus-visible,
.kr-home-hero-image-link:focus-visible,
.kr-home-ring-image a:focus-visible,
.kr-home-feature-diamonds-image a:focus-visible {
    outline:
        2px solid var(--kr-home-gold);

    outline-offset: 3px;
}


/* =========================================================
   LARGE DESKTOP SAFETY
========================================================= */

@media (min-width: 1181px) {

    .kr-home-slide-content {
        padding-left: 54px;
    }

    .kr-home-slider-prev {
        left: 8px;
    }

    .kr-home-slider-next {
        right: 8px;
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1180px) {

    .kr-home-container {
        width:
            min(
                calc(100% - 36px),
                var(--kr-home-max)
            );
    }

    .kr-home-slide-inner {
        gap: 42px;
    }

    .kr-home-shape-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .kr-home-shape-image {
        height: 180px;
    }

    .kr-home-quick-grid,
    .kr-home-collection-grid,
    .kr-home-trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .kr-home-trust-card:nth-child(2) {
        border-right: 0;
    }

    .kr-home-trust-card:nth-child(-n+2) {
        border-bottom:
            1px solid var(--kr-home-border);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .kr-home-section {
        padding: 72px 0;
    }

    .kr-home-slides,
    .kr-home-slide {
        min-height: auto;
    }

    .kr-home-slide-inner,
    .kr-home-choice-layout,
    .kr-home-ring-layout,
    .kr-home-feature-diamonds-layout,
    .kr-home-split-layout,
    .kr-home-about-inner {
        grid-template-columns:
            1fr;
    }

    .kr-home-slide-inner {
        min-height: auto;

        gap: 34px;

        padding-top: 58px;
        padding-bottom: 78px;
    }

    .kr-home-slide-content {
        max-width: 760px;

        padding-left: 0;
        padding-right: 0;
    }

    .kr-home-slide-content h1,
    .kr-home-slide-content h2 {
        max-width: 100%;
    }

    .kr-home-hero-image {
        height: 420px;
    }

    .kr-home-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .kr-home-slider-prev {
        left: 12px;
    }

    .kr-home-slider-next {
        right: 12px;
    }

    .kr-home-choice-layout,
    .kr-home-ring-layout,
    .kr-home-feature-diamonds-layout,
    .kr-home-split-layout,
    .kr-home-about-inner {
        gap: 42px;
    }

    .kr-home-choice-image img,
    .kr-home-feature-diamonds-image img {
        height: 450px;
    }

    .kr-home-ring-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
        object-position: center;
    }

    .kr-home-split-grid {
        grid-template-columns:
            1fr;
    }

    .kr-home-final-cta-inner {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* BASE */

    .kr-home-main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .kr-home-container {
        width:
            calc(100% - 28px);
    }

    .kr-home-section {
        padding:
            64px 0;
    }

    .kr-home-section-heading {
        margin-bottom:
            34px;
    }

    .kr-home-section-heading p {
        font-size:
            14px;
    }


    /* HERO */

    .kr-home-slider {
        margin-top:
            0 !important;

        padding-top:
            0 !important;
    }

    .kr-home-slide-inner {
        padding-top:
            34px !important;

        padding-bottom:
            58px !important;
    }

    .kr-home-slide-content {
        padding:
            0 !important;
    }

    .kr-home-slide-content h1,
    .kr-home-slide-content h2 {
        font-size:
            42px !important;

        line-height:
            1.04 !important;

        letter-spacing:
            -0.02em;

        margin-bottom:
            20px;
    }

    .kr-home-slide-content p {
        font-size:
            16px;

        line-height:
            1.65;
    }


    /* MOBILE HERO BUTTONS */

    .kr-home-actions {
        gap:
            12px;

        margin-top:
            26px;
    }

    .kr-home-btn {
        min-height:
            54px;

        padding:
            14px 20px;

        font-size:
            14px;
    }

    .kr-home-slide-content
    .kr-home-actions {
        display:
            grid;

        grid-template-columns:
            1fr;

        max-width:
            380px;
    }


    /* HERO IMAGE */

    .kr-home-hero-image {
        height:
            390px !important;

        object-fit:
            cover;

        object-position:
            center;

        border-radius:
            18px;
    }

    .kr-home-hero-image-link {
        border-radius:
            18px;
    }


    /* HIDE MOBILE HERO ARROWS */

    .kr-home-slider-arrow {
        display:
            none;
    }


    /* DOTS */

    .kr-home-slider-dots {
        bottom:
            18px;
    }


    /* QUICK GRID */

    .kr-home-quick-grid,
    .kr-home-collection-grid,
    .kr-home-trust-grid {
        grid-template-columns:
            1fr;
    }

    .kr-home-quick-card {
        min-height:
            220px;
    }


    /* DIAMOND SHAPES */

    .kr-home-shape-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            12px;
    }

    .kr-home-shape-card {
        padding:
            10px 8px 16px;

        border-radius:
            16px;
    }

    .kr-home-shape-image {
        height:
            165px;

        margin-bottom:
            8px;
    }

    .kr-home-shape-card h3 {
        font-size:
            18px;

        margin-bottom:
            5px;
    }

    .kr-home-shape-card p {
        font-size:
            12px;
    }

    .kr-home-center-link {
        margin-top:
            36px;

        margin-bottom:
            6px;
    }


    /* NATURAL LAB CHOICE IMAGE */

    .kr-home-choice-image img {
        height:
            420px !important;

        object-fit:
            cover;

        object-position:
            center;
    }


    /* RING BUILDER */

    .kr-home-ring-layout {
        gap:
            36px;
    }

    .kr-home-ring-image {
        height:
            auto !important;

        overflow:
            hidden;
    }

    .kr-home-ring-image a {
        display:
            block;

        width:
            100%;
    }

    .kr-home-ring-image img {
        width:
            100% !important;

        height:
            auto !important;

        max-height:
            none !important;

        object-fit:
            contain !important;

        object-position:
            center !important;

        display:
            block;
    }

    .kr-home-ring-image:hover img {
        transform:
            none;
    }


    /* RING BUILDER STEPS */

    .kr-home-step {
        grid-template-columns:
            48px minmax(0,1fr);

        gap:
            14px;

        padding:
            20px 0;
    }

    .kr-home-step h3 {
        font-size:
            18px;
    }

    .kr-home-step p {
        font-size:
            14px;

        line-height:
            1.55;
    }


    /* FEATURE DIAMOND */

    .kr-home-feature-diamonds-image img {
        height:
            410px !important;

        object-fit:
            cover;

        object-position:
            center;
    }


    /* HEADINGS */

    .kr-home-section-heading h2,
    .kr-home-choice-content h2,
    .kr-home-ring-content h2,
    .kr-home-feature-diamonds-content h2,
    .kr-home-education
    .kr-home-split-content h2,
    .kr-home-about-inner h2,
    .kr-home-final-cta h2 {
        font-size:
            39px !important;

        line-height:
            1.06;
    }


    /* NATURAL / LAB CARDS */

    .kr-home-split-card {
        min-height:
            auto;

        padding:
            30px;
    }


    /* COLLECTION */

    .kr-home-collection-card {
        min-height:
            260px;
    }


    /* TRUST */

    .kr-home-trust-card {
        min-height:
            auto;

        padding:
            26px 0;

        border-right:
            0;

        border-bottom:
            1px solid var(--kr-home-border);
    }

    .kr-home-trust-card:last-child {
        border-bottom:
            0;
    }

    .kr-home-trust-card > span {
        margin-bottom:
            20px;
    }


    /* EDUCATION */

    .kr-home-feature-panel {
        padding:
            30px;
    }


    /* ABOUT */

    .kr-home-about-inner {
        gap:
            30px;
    }


    /* FINAL CTA */

    .kr-home-final-cta {
        padding:
            58px 0;
    }


    /* FLOATING WHATSAPP */

    .joinchat,
    .ht-ctc-chat,
    .wa__btn_popup,
    .whatsapp_float {
        right:
            14px !important;

        bottom:
            22px !important;

        transform:
            scale(0.90);

        transform-origin:
            bottom right;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .kr-home-container {
        width:
            calc(100% - 24px);
    }

    .kr-home-slide-content h1,
    .kr-home-slide-content h2 {
        font-size:
            37px !important;
    }

    .kr-home-section-heading h2,
    .kr-home-choice-content h2,
    .kr-home-ring-content h2,
    .kr-home-feature-diamonds-content h2,
    .kr-home-education
    .kr-home-split-content h2,
    .kr-home-about-inner h2,
    .kr-home-final-cta h2 {
        font-size:
            35px !important;
    }

    .kr-home-hero-image {
        height:
            340px !important;
    }

    .kr-home-shape-image {
        height:
            145px;
    }

    .kr-home-choice-image img,
    .kr-home-feature-diamonds-image img {
        height:
            360px !important;
    }

    .kr-home-ring-image img {
        width:
            100% !important;

        height:
            auto !important;

        max-height:
            none !important;

        object-fit:
            contain !important;

        object-position:
            center !important;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kr-home-main *,
    .kr-home-main *::before,
    .kr-home-main *::after {
        scroll-behavior:
            auto !important;

        transition:
            none !important;

        animation:
            none !important;
    }

}