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

.mobile-hero{
    position:relative;
    width:100vw;
    height:100svh;

    margin:0 !important;
    padding:0 !important;

    overflow:hidden;
    background:#000;
}

.mobile-slider{
    display:flex;

    width:100%;
    height:100%;

    margin:0;
    padding:0;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

.mobile-slider::-webkit-scrollbar{
    display:none;
}

.mobile-slide{
    position:relative;

    flex:0 0 100%;
    width:100%;
    height:100%;

    margin:0;
    padding:0;

    overflow:hidden;

    scroll-snap-align:start;
}

.mobile-image{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    user-select:none;
    -webkit-user-drag:none;
    pointer-events:none;
}

/* ==========================================================
   MOBILE HERO CONTROLS
========================================================== */

.mobile-home .campaign-prev,
.mobile-home .campaign-next{
    display:none !important;
}

/* ==========================================================
   RESET GLOBAL SECTION PADDING
========================================================== */

.mobile-hero,
.mobile-slider,
.mobile-slide{
    margin:0 !important;
    padding:0 !important;
}

/* ==========================================
   MOBILE CAMPAIGN DOTS
========================================== */

.mobile-home .campaign-controls{

    position:absolute;

    left:50%;
    bottom:32px;

    transform:translateX(-50%);

    z-index:30;
}

.mobile-home .campaign-dots{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;
}

.mobile-home .campaign-dot{

    transition:.35s;
}

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

.mobile-products{

    padding:0;

    display:flex;

    flex-direction:column;

    gap:60px;

    background:transparent;

}

.mobile-product-card{

    display:block;

    text-decoration:none;

    color:inherit;

}

.mobile-product-image{

    width:100%;

    height:460px;

    overflow:hidden;

    border-radius:18px;

    background:#cdcdcd;

}

.mobile-product-image img{

    width:100% !important;

    height:100% !important;

    display:block;

    object-fit:cover;

    object-position:center;

}

.mobile-product-content{

    padding-top:18px;

}

.mobile-product-category{

    display:block;

    font-size:11px;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#da5a10;

    margin-bottom:10px;

}

.mobile-product-title{

    font-family:"Cormorant Garamond", serif;

    font-size:2rem;

    color:#0d0d62;

    margin-bottom:8px;

}

.mobile-product-price{

    font-size:1rem;

    font-weight:500;

    color:#222;

}

.mobile-product-link{

    display:inline-block;

    margin-top:10px;

    color:#0d0d62;

    font-size:.95rem;

}












.mobile-home .campaign-dot{

    width:8px !important;
    height:8px !important;

    border:none;
    border-radius:999px;

    background:rgba(255,255,255,.35);

    transition:all .35s ease;
}

.mobile-home .campaign-dot.active{

    width:34px !important;
    height:8px !important;

    background:#fff;

    border-radius:999px;
}

/* ==========================================
   MOBILE CONTENT SHELL
========================================== */

.mobile-content-shell{

    width:calc(100% - 24px);

    margin:32px auto 40px;

    padding:32px 18px 60px;

    position:relative;
    z-index:20;

    overflow:hidden;

    border-radius:30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.30) 0%,
            rgba(255,255,255,.18) 45%,
            rgba(232,238,252,.12) 100%
        );

    border:1px solid rgba(255,255,255,.55);

    backdrop-filter:
        blur(30px)
        saturate(180%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(180%);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.55),
        inset 0 12px 30px rgba(255,255,255,.12),
        0 25px 60px rgba(0,0,0,.10);

}


/* ==========================================
   GLASS REFLECTION
========================================== */

.mobile-content-shell::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.45) 0%,
            rgba(255,255,255,.18) 18%,
            rgba(255,255,255,.08) 35%,
            transparent 65%
        );

    pointer-events:none;

}


/* ==========================================
   GLASS SHINE
========================================== */

.mobile-content-shell::after{

    content:"";

    position:absolute;

    left:-25%;

    top:-45%;

    width:65%;

    height:180%;

    transform:rotate(22deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    pointer-events:none;

    opacity:.75;

}