/* ============================================================
   SHEENA BEAUTY SLIDER — Plugin Stylesheet
   Exact match to sheena-slider-v3.html design
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Jost:wght@300;400;500&display=swap');

/* ── WRAPPER ── */
.sheena-slider-wrap {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
}

/* ── EACH SLIDE ── */
.sheena-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
}
.sheena-slide.sheena-active {
    opacity: 1;
    z-index: 2;
}

/* slide background colours */
.sheena-s1 { background-color: #f5f0e8; }
.sheena-s2 { background-color: #f9ede8; }

/* leaf watermark */
.sheena-slide::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    opacity: .07;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cg fill='%238a7a60'%3E%3Cellipse cx='250' cy='360' rx='45' ry='140' transform='rotate(-30 250 360)'/%3E%3Cellipse cx='200' cy='310' rx='35' ry='115' transform='rotate(-55 200 310)'/%3E%3Cellipse cx='300' cy='330' rx='40' ry='125' transform='rotate(-10 300 330)'/%3E%3Cellipse cx='170' cy='380' rx='25' ry='85' transform='rotate(-40 170 380)'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
    z-index: 0;
}

/* ── LEFT CONTENT ── */
.sheena-left {
    width: 45%;
    padding: 0 40px 0 6%;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.sheena-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7a6e64;
    margin-bottom: 18px;
}

.sheena-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(34px, 4.2vw, 66px) !important;
    font-weight: 400 !important;
    line-height: 1.08 !important;
    color: #3a3028 !important;
    margin-bottom: 22px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.sheena-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: #7a6e64;
    max-width: 370px;
    margin-bottom: 34px;
}

.sheena-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #3a3028 !important;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3a3028 !important;
    text-decoration: none !important;
    background: transparent !important;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Jost', sans-serif;
}
.sheena-btn:hover {
    background: #3a3028 !important;
    color: #fff !important;
}

/* ── RIGHT MOSAIC ── */
.sheena-right {
    width: 55%;
    height: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    padding: 32px 32px 32px 8px;
    position: relative;
    z-index: 5;
    align-items: center;
}

/* ── IMAGE CELLS ── */
.sheena-cell {
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 130px;
}
.sheena-cell svg,
.sheena-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── COLUMN FLOAT ANIMATIONS ──
   Col 1 (left column)  → floats UP   continuously
   Col 2 (right column) → floats DOWN continuously
*/
@keyframes sheena-float-up {
    0%   { transform: translateY(0px);  }
    50%  { transform: translateY(-28px); }
    100% { transform: translateY(0px);  }
}
@keyframes sheena-float-down {
    0%   { transform: translateY(0px);  }
    50%  { transform: translateY(28px); }
    100% { transform: translateY(0px);  }
}

/* oval / circle shapes + float animation */
.sheena-c1 {
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    animation: sheena-float-up 5s ease-in-out infinite;
    animation-delay: 0s;
}
.sheena-c2 {
    border-radius: 50%;
    animation: sheena-float-down 5s ease-in-out infinite;
    animation-delay: 0.4s;
}
.sheena-c3 {
    border-radius: 50% 50% 50% 50% / 52% 52% 48% 48%;
    animation: sheena-float-up 5s ease-in-out infinite;
    animation-delay: 0.8s;
}
.sheena-c4 {
    border-radius: 50%;
    animation: sheena-float-down 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* pause float animation on inactive slides so it resets nicely */
.sheena-slide:not(.sheena-active) .sheena-cell {
    animation-play-state: paused;
}

/* slide-in animation when a slide becomes active */
@keyframes sheena-slide-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes sheena-slide-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes sheena-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* text content animates in from left when slide activates */
.sheena-slide.sheena-active .sheena-tag {
    animation: sheena-fade-up 0.7s ease both;
    animation-delay: 0.1s;
}
.sheena-slide.sheena-active .sheena-heading {
    animation: sheena-fade-up 0.7s ease both;
    animation-delay: 0.25s;
}
.sheena-slide.sheena-active .sheena-desc {
    animation: sheena-fade-up 0.7s ease both;
    animation-delay: 0.4s;
}
.sheena-slide.sheena-active .sheena-btn {
    animation: sheena-fade-up 0.7s ease both;
    animation-delay: 0.55s;
}

/* right mosaic slides in from right */
.sheena-slide.sheena-active .sheena-right {
    animation: sheena-slide-in-right 0.9s ease both;
    animation-delay: 0.15s;
}

/* ── DOTS ── */
.sheena-dots {
    position: absolute;
    bottom: 26px;
    left: 6%;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}
.sheena-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a6e64;
    opacity: .4;
    cursor: pointer;
    transition: all .35s ease;
}
.sheena-dot.sheena-dot-active {
    width: 22px;
    height: 6px;
    border-radius: 4px;
    background: #3a3028;
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
    .sheena-slide {
        flex-direction: column;
        overflow: hidden;
    }
    .sheena-left {
        width: 100%;
        padding: 36px 24px 14px;
    }
    .sheena-right {
        width: 100%;
        height: 55vw;
        padding: 8px 14px;
        gap: 8px;
    }
    .sheena-heading {
        font-size: 30px !important;
    }
    .sheena-c1,
    .sheena-c2,
    .sheena-c3,
    .sheena-c4 {

    }
    .sheena-dots {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
}
