/*==============================================================
 RAEES IMPORT & EXPORT
 HOME HERO
 FINAL COMPLETE VERSION
==============================================================*/


/*==============================================================
 1. HERO SECTION
==============================================================*/

.hero-section {
    position: relative;
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;

    padding: 82px 0 70px;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(183, 128, 44, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 72%,
            rgba(183, 128, 44, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffdf9 0%,
            #fbf7ef 48%,
            #f7f0e5 100%
        );

    isolation: isolate;
}


/*==============================================================
 2. HERO BACKGROUND
==============================================================*/

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}


.hero-orb {
    position: absolute;

    display: block;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.hero-orb-one {
    top: -150px;
    left: -120px;

    width: 440px;
    height: 440px;

    background:
        radial-gradient(
            circle,
            rgba(190, 137, 55, 0.12),
            rgba(190, 137, 55, 0.02) 55%,
            transparent 72%
        );
}


.hero-orb-two {
    right: -130px;
    bottom: -180px;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(183, 128, 44, 0.10),
            rgba(183, 128, 44, 0.02) 55%,
            transparent 72%
        );
}


.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.16;

    background-image:
        linear-gradient(
            rgba(38, 31, 23, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(38, 31, 23, 0.035) 1px,
            transparent 1px
        );

    background-size: 46px 46px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            transparent 85%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            transparent 85%
        );
}


/*==============================================================
 3. HERO CONTAINER
==============================================================*/

.hero-section > .container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;

    min-height: 0 !important;
    height: auto;
}


/*==============================================================
 4. HERO LAYOUT
==============================================================*/

.hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(420px, 0.96fr);

    align-items: center;

    gap: clamp(55px, 7vw, 105px);

    min-height: 0 !important;
    height: auto;
}


/*==============================================================
 5. HERO CONTENT
==============================================================*/

.hero-content {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 650px;

    min-height: 0 !important;
    height: auto;
}


/*==============================================================
 6. HERO EYEBROW
==============================================================*/

.hero-eyebrow {
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}


.hero-eyebrow .badge,
.hero-eyebrow .badge-premium {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0;

    border: 0;

    color: #241f19;

    background: transparent;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow: none;
}


.hero-eyebrow .badge i,
.hero-eyebrow .badge-premium i {
    color: #b7802c;

    font-size: 12px;
}


/*==============================================================
 7. HERO TITLE
==============================================================*/

.hero-title {
    margin: 0;

    color: #17130f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 5.2vw, 78px);

    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -0.045em;
}


.hero-title span {
    display: block;

    margin: 8px 0;

    color: #b47c27;

    font-style: normal;
}


/*==============================================================
 8. HERO DESCRIPTION
==============================================================*/

.hero-description {
    max-width: 640px;

    margin:
        30px 0 0;

    color: #655d53;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.85;
}


.hero-description strong {
    color: #1c1814;

    font-weight: 700;
}


/*==============================================================
 9. HERO ACTIONS
==============================================================*/

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}


.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        13px 24px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}


.hero-actions .btn-primary {
    border:
        1px solid #18140f;

    color: #ffffff;

    background:
        #18140f;

    box-shadow:
        0 12px 28px
        rgba(24,20,15,.14);
}


.hero-actions .btn-primary:hover {
    color: #ffffff;

    background:
        #b7802c;

    border-color:
        #b7802c;

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 34px
        rgba(183,128,44,.20);
}


.hero-actions .btn-outline {
    border:
        1px solid rgba(33, 28, 22, .24);

    color: #1d1915;

    background:
        rgba(255,255,255,.45);
}


.hero-actions .btn-outline:hover {
    color: #17130f;

    border-color:
        #b7802c;

    background:
        #ffffff;

    transform:
        translateY(-2px);
}


/*==============================================================
 10. HERO TRUST
==============================================================*/

.hero-trust {
    display: flex;
    align-items: center;

    gap: 20px;

    width: fit-content;
    max-width: 100%;

    margin-top: 34px;
    padding-top: 25px;

    border-top:
        1px solid rgba(36, 30, 23, .12);
}


.hero-trust-item {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.hero-trust-item strong {
    color: #211c17;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;
}


.hero-trust-item span {
    color: #81766a;

    font-size: 10px;
    font-weight: 500;

    line-height: 1.3;
}


.hero-trust-divider {
    display: block;

    width: 1px;
    height: 32px;

    background:
        rgba(34, 28, 21, .14);
}


/*==============================================================
 11. HERO VISUAL
==============================================================*/

.hero-visual {
    position: relative;
    z-index: 3;

    width: 100%;

    min-height: 0 !important;
    height: auto;
}


/*==============================================================
 12. HERO IMAGE CARD
==============================================================*/

.hero-image-card {
    position: relative;

    width: 100%;
    max-width: 540px;

    margin-left: auto;

    padding: 10px;

    min-height: 0 !important;
    height: auto;

    border:
        1px solid rgba(55, 43, 29, .09);

    border-radius: 25px;

    background:
        rgba(255,255,255,.86);

    box-shadow:
        0 30px 70px
        rgba(38, 29, 18, .15),
        0 8px 24px
        rgba(38, 29, 18, .07);

    isolation: isolate;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.hero-image-card::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 12%;

    width: 76%;
    height: 1px;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(183,128,44,.50),
            transparent
        );

    pointer-events: none;
}


/*==============================================================
 13. HERO IMAGE WRAP
==============================================================*/

.hero-image-wrap {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background:
        #eee5d8;

    isolation: isolate;
}


.hero-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 4;

    border:
        1px solid rgba(255,255,255,.20);

    border-radius: inherit;

    pointer-events: none;
}


/*==============================================================
 14. GENERIC HERO IMAGE SAFETY
==============================================================*/

.hero-image-wrap > img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    user-select: none;

    -webkit-user-select: none;
    -webkit-user-drag: none;
}


/*==============================================================
 15. FLOATING CARDS
==============================================================*/

.hero-floating-card {
    position: absolute;
    z-index: 12;

    display: flex;
    align-items: center;

    gap: 11px;

    padding:
        11px 14px;

    border:
        1px solid rgba(255,255,255,.84);

    border-radius: 13px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 18px 42px
        rgba(25,21,16,.15);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}


.hero-floating-card-one {
    top: 76px;
    left: -42px;

    min-width: 176px;
}


.hero-floating-card-two {
    right: -36px;
    bottom: 68px;
}


/*==============================================================
 16. FLOATING CARD ICON
==============================================================*/

.hero-floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex:
        0 0 38px;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    color: #a9701f;

    background:
        #f5ead7;

    font-size: 14px;
}


/*==============================================================
 17. FLOATING CARD TEXT
==============================================================*/

.hero-floating-card > span:last-child {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.hero-floating-card small {
    display: block;

    color: #8b8175;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.hero-floating-card strong {
    display: block;

    color: #181511;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}


/*==============================================================
 18. PRODUCT NAME
==============================================================*/

.hero-image-card
[data-hero-product-name] {
    display: block;

    max-width: 145px;

    overflow: hidden;

    color: #181511;

    text-overflow: ellipsis;
    white-space: nowrap;

    transition:
        opacity .25s ease,
        transform .25s ease;
}


/*==============================================================
 19. DESKTOP HOVER
==============================================================*/

@media (hover: hover) and (pointer: fine) {

    .hero-image-card:hover {
        transform:
            translateY(-4px);

        box-shadow:
            0 36px 80px
            rgba(38,29,18,.18),
            0 10px 28px
            rgba(38,29,18,.08);
    }

}


/*==============================================================
 20. HERO PRODUCT SLIDER ROOT
==============================================================*/

.hero-product-slider {
    position: relative;

    width: 100%;

    height:
        clamp(500px, 61vh, 610px);

    overflow: hidden;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #eee6da,
            #e5dac9
        );

    isolation: isolate;
}


/*==============================================================
 21. SLIDES
==============================================================*/

.hero-product-slide {
    position: absolute;
    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        scale(1.035);

    transition:
        opacity .9s cubic-bezier(.22,.61,.36,1),
        visibility .9s ease,
        transform 5.5s cubic-bezier(.2,.65,.25,1);
}


.hero-product-slide.is-active {
    z-index: 1;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
        scale(1);
}


/*==============================================================
 22. SLIDER IMAGES
==============================================================*/

.hero-product-slide img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    margin: 0;
    padding: 0;

    object-fit: cover !important;
    object-position: center center;

    opacity: 1;

    background:
        linear-gradient(
            145deg,
            #eee5d8,
            #e5d9c8
        );

    user-select: none;

    -webkit-user-select: none;
    -webkit-user-drag: none;

    transform:
        scale(1.015);

    transition:
        transform 6s cubic-bezier(.2,.65,.25,1);
}


.hero-product-slide.is-active img {
    transform:
        scale(1.065);
}


/*==============================================================
 23. PREMIUM SLIDER OVERLAY
==============================================================*/

.hero-product-slider::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(15,12,9,.015) 0%,
            transparent 30%,
            transparent 62%,
            rgba(15,12,9,.18) 100%
        );
}


/*==============================================================
 24. SLIDER DOTS
==============================================================*/

.hero-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 19px;

    z-index: 8;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding:
        7px 9px;

    border:
        1px solid rgba(255,255,255,.42);

    border-radius: 999px;

    background:
        rgba(19,16,12,.28);

    box-shadow:
        0 8px 24px
        rgba(0,0,0,.12);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    transform:
        translateX(-50%);
}


/*==============================================================
 25. SLIDER DOT
==============================================================*/

.hero-slider-dot {
    position: relative;

    display: block;

    flex:
        0 0 auto;

    width: 7px;
    height: 7px;

    margin: 0;
    padding: 0;

    border: 0;

    border-radius: 999px;

    background:
        rgba(255,255,255,.58);

    box-shadow: none;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        width .35s ease,
        background-color .35s ease,
        transform .35s ease,
        opacity .35s ease;
}


.hero-slider-dot.is-active {
    width: 24px;

    background:
        #ffffff;

    opacity: 1;
}


.hero-slider-dot:hover {
    background:
        #ffffff;

    transform:
        scale(1.08);
}


.hero-slider-dot:focus-visible {
    outline:
        2px solid #ffffff;

    outline-offset:
        3px;
}


/*==============================================================
 26. SLIDER FLOATING CARDS
==============================================================*/

.hero-image-card
.hero-floating-card-one {
    z-index: 12;

    min-width: 176px;

    border:
        1px solid rgba(255,255,255,.84);

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 18px 42px
        rgba(25,21,16,.15);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}


.hero-image-card
.hero-floating-card-two {
    z-index: 12;

    border:
        1px solid rgba(255,255,255,.84);

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 18px 42px
        rgba(25,21,16,.14);
}


/*==============================================================
 27. LARGE DESKTOP
==============================================================*/

@media (min-width: 1400px) {

    .hero-section > .container {
        max-width: 1280px;
    }


    .hero-product-slider {
        height: 620px;
    }


    .hero-slider-dots {
        bottom: 21px;
    }

}


/*==============================================================
 28. LAPTOP
==============================================================*/

@media (max-width: 1199.98px) {

    .hero-section {
        padding-top: 68px;
    }


    .hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, .92fr);

        gap: 50px;
    }


    .hero-title {
        font-size:
            clamp(46px, 5vw, 64px);
    }


    .hero-product-slider {
        height: 520px;
    }


    .hero-floating-card-one {
        left: -20px;
    }


    .hero-floating-card-two {
        right: -18px;
    }

}


/*==============================================================
 29. TABLET
==============================================================*/

@media (max-width: 991.98px) {

    .hero-section {
        padding:
            60px 0 55px !important;
    }


    .hero-section > .container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .hero-layout {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 48px;
    }


    .hero-content {
        max-width: 720px;

        margin:
            0 auto;

        text-align: center;
    }


    .hero-eyebrow {
        justify-content: center;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-visual {
        max-width: 650px;

        margin:
            0 auto;
    }


    .hero-image-card {
        max-width: 600px;

        margin:
            0 auto;
    }


    .hero-product-slider {
        height: 590px;
    }


    .hero-image-card
    .hero-floating-card-one {
        left: 18px;
    }


    .hero-image-card
    .hero-floating-card-two {
        right: 18px;
    }

}


/*==============================================================
 30. MOBILE
==============================================================*/

@media (max-width: 767.98px) {

    .hero-section {
        padding:
            46px 0 40px !important;
    }


    .hero-section > .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    .hero-layout {
        gap: 38px;
    }


    .hero-content {
        text-align: left;
    }


    .hero-eyebrow {
        justify-content: flex-start;

        margin-bottom: 16px;
    }


    .hero-eyebrow .badge,
    .hero-eyebrow .badge-premium {
        font-size: 10px;

        letter-spacing: .06em;
    }


    .hero-title {
        font-size:
            clamp(42px, 12vw, 58px);

        line-height: 1;
    }


    .hero-title span {
        margin:
            5px 0;
    }


    .hero-description {
        margin:
            22px 0 0;

        font-size: 14px;
        line-height: 1.75;
    }


    .hero-actions {
        justify-content: flex-start;

        gap: 10px;

        margin-top: 24px;
    }


    .hero-actions .btn {
        min-height: 47px;

        padding:
            12px 18px;

        font-size: 12px;
    }


    .hero-trust {
        justify-content: flex-start;

        width: 100%;

        gap: 14px;

        margin:
            27px 0 0;

        padding-top: 20px;
    }


    .hero-trust-item strong {
        font-size: 12px;
    }


    .hero-trust-item span {
        font-size: 9px;
    }


    .hero-trust-divider {
        height: 28px;
    }


    .hero-image-card {
        padding: 7px;

        border-radius: 20px;
    }


    .hero-image-wrap {
        border-radius: 15px;
    }


    .hero-product-slider {
        width: 100%;
        height: auto;

        aspect-ratio:
            4 / 4.55;

        min-height: 0;

        border-radius: 15px;
    }


    .hero-product-slide {
        width: 100%;
        height: 100%;

        transform:
            scale(1.02);
    }


    .hero-product-slide.is-active {
        transform:
            scale(1);
    }


    .hero-product-slide img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center;
    }


    .hero-product-slide.is-active img {
        transform:
            scale(1.045);
    }


    .hero-slider-dots {
        bottom: 14px;

        gap: 6px;

        padding:
            6px 8px;
    }


    .hero-slider-dot {
        width: 6px;
        height: 6px;
    }


    .hero-slider-dot.is-active {
        width: 20px;
    }


    .hero-image-card
    .hero-floating-card-one {
        top: 18px;
        left: 17px;

        min-width: 0;

        max-width:
            calc(100% - 100px);
    }


    .hero-image-card
    [data-hero-product-name] {
        max-width: 120px;
    }


    .hero-image-card
    .hero-floating-card-two {
        right: 17px;
        bottom: 45px;
    }


    .hero-floating-card {
        gap: 8px;

        padding:
            8px 10px;

        border-radius: 10px;
    }


    .hero-floating-icon {
        flex-basis: 31px;

        width: 31px;
        height: 31px;

        border-radius: 8px;

        font-size: 12px;
    }


    .hero-floating-card small {
        font-size: 7px;
    }


    .hero-floating-card strong {
        font-size: 10px;
    }

}


/*==============================================================
 31. MOBILE 575
==============================================================*/

@media (max-width: 575.98px) {

    .hero-section {
        padding:
            38px 0 32px !important;
    }


    .hero-title {
        font-size:
            clamp(39px, 11.5vw, 50px);
    }


    .hero-actions {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        width: 100%;
    }


    .hero-actions .btn {
        width: 100%;

        padding-left: 12px;
        padding-right: 12px;
    }


    .hero-trust {
        gap: 10px;

        justify-content: space-between;
    }


    .hero-trust-divider {
        flex:
            0 0 1px;
    }


    .hero-product-slider {
        aspect-ratio:
            4 / 4.55;
    }


    .hero-slider-dots {
        bottom: 12px;
    }


    .hero-image-card
    .hero-floating-card-one {
        top: 14px;
        left: 13px;
    }


    .hero-image-card
    .hero-floating-card-two {
        right: 13px;
        bottom: 40px;
    }

}


/*==============================================================
 32. SMALL MOBILE 430
==============================================================*/

@media (max-width: 430px) {

    .hero-section > .container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .hero-title {
        font-size:
            clamp(37px, 11.4vw, 47px);
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-actions {
        grid-template-columns:
            1fr;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-trust {
        align-items: stretch;

        gap: 8px;
    }


    .hero-trust-item {
        flex:
            1 1 0;
    }


    .hero-trust-item strong {
        font-size: 11px;
    }


    .hero-trust-item span {
        font-size: 8px;
    }


    .hero-product-slider {
        aspect-ratio:
            4 / 4.7;

        border-radius: 13px;
    }


    .hero-slider-dots {
        bottom: 10px;

        padding:
            5px 7px;
    }


    .hero-slider-dot {
        width: 5px;
        height: 5px;
    }


    .hero-slider-dot.is-active {
        width: 17px;
    }


    .hero-image-card
    .hero-floating-card-one {
        top: 12px;
        left: 11px;

        max-width:
            calc(100% - 90px);
    }


    .hero-image-card
    .hero-floating-card-two {
        right: 11px;
        bottom: 34px;
    }


    .hero-image-card
    [data-hero-product-name] {
        max-width: 105px;
    }

}


/*==============================================================
 33. VERY SMALL MOBILE
==============================================================*/

@media (max-width: 360px) {

    .hero-title {
        font-size: 36px;
    }


    .hero-slider-dots {
        bottom: 9px;
    }


    .hero-image-card
    .hero-floating-card-one {
        max-width:
            calc(100% - 75px);
    }


    .hero-image-card
    [data-hero-product-name] {
        max-width: 92px;
    }


    .hero-image-card
    .hero-floating-card-two {
        bottom: 31px;
    }

}


/*==============================================================
 34. SLIDER LAYOUT SAFETY
==============================================================*/

.hero-product-slider,
.hero-product-slide {
    contain:
        layout paint;
}


/*==============================================================
 35. REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .hero-product-slide,
    .hero-product-slide img,
    .hero-slider-dot,
    .hero-image-card,
    .hero-actions .btn {
        animation:
            none !important;

        transition:
            none !important;

        transform:
            none !important;
    }


    .hero-product-slide {
        opacity: 0;
    }


    .hero-product-slide.is-active {
        opacity: 1;
        visibility: visible;
    }

}


/*==============================================================
 36. FINAL HEIGHT SAFETY
==============================================================*/

.hero-section > .container,
.hero-layout,
.hero-content,
.hero-visual,
.hero-image-card {
    min-height:
        0 !important;

    height:
        auto;
}


/*==============================================================
 END
 RAEES IMPORT & EXPORT
 FINAL COMPLETE HERO + PRODUCT SLIDER
==============================================================*/