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

/* ── Scoped reset — won't bleed into theme ── */
.shs-ann, .shs-slider, .shs-trust {
    all: unset;
    display: block;
    box-sizing: border-box;
}

.shs-ann *, .shs-slider *, .shs-trust * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Utility ── */
@media (max-width: 767px) {
    .shs-hide-mobile { display: none !important; }
}

/* ═══════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════ */
.shs-ann {
    width: 100%;
    background: #1C1510;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 34px;
    position: relative;
}

.shs-ann-track {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 16px;
    white-space: nowrap;
    animation: shs-ticker var(--shs-ann-speed, 18s) linear infinite;
    will-change: transform;
    flex-shrink: 0;
}

.shs-ann-item {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(212,185,120,0.7);
    font-weight: 300;
    flex-shrink: 0;
}

.shs-ann-dot {
    color: rgba(196,154,60,0.45);
    font-size: 4px;
    flex-shrink: 0;
    line-height: 1;
}

@keyframes shs-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════
   SLIDER SHELL
═══════════════════════════ */
.shs-slider {
    position: relative;
    width: 100%;
    height: 560px;         /* overridden by Elementor responsive control */
    overflow: hidden;
    background: #0a0805;
    display: block;
    /* Prevent Elementor adding padding */
    padding: 0 !important;
}

/* ═══════════════════════════
   SLIDES
═══════════════════════════ */
.shs-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1400ms cubic-bezier(0.45, 0, 0.25, 1);
    display: block;
    text-decoration: none !important;
    color: inherit;
    outline: none;
    z-index: 1;
}

.shs-slide.shs-active {
    opacity: 1;
    z-index: 2;
}

.shs-slide-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.04);
    transition: transform 6s ease;
    display: block;
}

.shs-slide.shs-active .shs-slide-photo {
    transform: scale(1);
}

.shs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════
   GLASS CARD
═══════════════════════════ */
.shs-glass-card {
    position: absolute;
    bottom: 44px;
    z-index: 10;
    width: 358px;
    background: rgba(8,6,3,0.48);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border: 1px solid rgba(196,154,60,0.25);
    padding: 18px 20px 16px;
    text-align: center;
    /* No border-radius by default — sharp luxury edge */
}

/* Horizontal position helpers */
.shs-glass-card.shs-pos-center {
    left: 50%;
    transform: translateX(-50%);
}
.shs-glass-card.shs-pos-left {
    left: 16px;
    right: auto;
    transform: none;
}
.shs-glass-card.shs-pos-right {
    right: 16px;
    left: auto;
    transform: none;
}

/* Inner fine border (optional) */
.shs-glass-card.shs-inner-border::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(196,154,60,0.1);
    pointer-events: none;
}

/* ── Corner ornaments ── */
.shs-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    display: block;
    border-color: rgba(196,154,60,0.5);
}

.shs-co-tl {
    top: 5px; left: 5px;
    border-top:  1px solid;
    border-left: 1px solid;
}
.shs-co-tr {
    top: 5px; right: 5px;
    border-top:   1px solid;
    border-right: 1px solid;
}
.shs-co-bl {
    bottom: 5px; left: 5px;
    border-bottom: 1px solid;
    border-left:   1px solid;
}
.shs-co-br {
    bottom: 5px; right: 5px;
    border-bottom: 1px solid;
    border-right:  1px solid;
}

/* ═══════════════════════════
   TEXT ELEMENTS
═══════════════════════════ */
.shs-coll-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.shs-slide.shs-active .shs-coll-label {
    opacity: 1;
    transform: translateY(0);
}

.shs-lbl-line {
    width: 20px;
    height: 1px;
    background: rgba(196,154,60,0.6);
    flex-shrink: 0;
    display: block;
}

.shs-label-text {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C49A3C;
    font-weight: 400;
    display: block;
}

.shs-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.1;
    color: #FAF5EC;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
    /* Override Elementor heading resets */
    display: block;
    padding: 0;
}
.shs-slide.shs-active .shs-headline {
    opacity: 1;
    transform: translateY(0);
}

.shs-headline em {
    font-style: italic;
    color: #D4B483;
    font-weight: 300;
}

.shs-script-line {
    font-family: 'Dancing Script', cursive;
    font-size: 13px;
    color: rgba(196,154,60,0.55);
    display: block;
    margin-bottom: 14px;
    opacity: 0;
    transition: opacity 0.5s ease 0.55s;
}
.shs-slide.shs-active .shs-script-line {
    opacity: 1;
}

/* ═══════════════════════════
   CTA BUTTONS
═══════════════════════════ */
.shs-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s;
}
.shs-slide.shs-active .shs-cta-row {
    opacity: 1;
    transform: translateY(0);
}

.shs-btn-main {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(212,185,120,0.65);
    color: #FAF5EC !important;
    background: transparent;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.shs-btn-main:hover {
    background: rgba(212,185,120,0.1);
    text-decoration: none !important;
}

.shs-btn-wa {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(212,185,120,0.65) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.2;
    background: none;
    border: none;
    padding: 0;
}
.shs-btn-wa:hover {
    color: rgba(212,185,120,1) !important;
    text-decoration: none !important;
}

.shs-wa-svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

/* ═══════════════════════════
   ARROWS
═══════════════════════════ */
.shs-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    background: rgba(15,12,8,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196,154,60,0.2);
    color: rgba(212,185,120,0.9);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    user-select: none;
    outline: none;
    line-height: 1;
    font-family: sans-serif;
}
.shs-arr:hover {
    background: rgba(15,12,8,0.7);
    border-color: rgba(196,154,60,0.5);
}
.shs-arr-l { left: 20px; }
.shs-arr-r { right: 20px; }

/* ═══════════════════════════
   DOTS
═══════════════════════════ */
.shs-dots {
    position: absolute;
    bottom: 18px;
    left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
}

.shs-dot {
    width: 16px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: width 0.4s ease, background-color 0.4s ease;
    outline: none;
    padding: 0;
    display: block;
    flex-shrink: 0;
}
.shs-dot.shs-active {
    width: 34px;
    background: rgba(196,154,60,0.9);
}

/* ═══════════════════════════
   PROGRESS BAR
═══════════════════════════ */
.shs-prog-wrap {
    position: absolute;
    left: 0; right: 0;
    height: 1.5px;
    background: rgba(255,255,255,0.05);
    z-index: 25;
    overflow: hidden;
}
.shs-prog-top    { top: 0; }
.shs-prog-bottom { bottom: 0; }

.shs-prog-bar {
    height: 100%;
    width: 0;
    background: rgba(196,154,60,0.7);
    transition: none;
}
.shs-prog-bar.shs-prog-run {
    transition-property: width;
    transition-timing-function: linear;
    width: 100%;
}

/* ═══════════════════════════
   TRUST STRIP
═══════════════════════════ */
.shs-trust {
    width: 100%;
    background: #FAF5EC;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.shs-trust-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    padding: 0 20px;
    animation: shs-ticker 16s linear infinite;
    will-change: transform;
    flex-shrink: 0;
}

.shs-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7A5C30;
    font-weight: 400;
    flex-shrink: 0;
}
.shs-trust-ico { color: #C49A3C; }

/* ═══════════════════════════
   ELEMENTOR CONFLICT FIXES
═══════════════════════════ */

/* Prevent Elementor's column padding from pushing slider */
.elementor-widget-shs_hero_slider > .elementor-widget-container {
    padding: 0 !important;
    overflow: hidden;
}

/* Ensure slide <a> wrapper doesn't show blue / underline */
.elementor-widget-shs_hero_slider a.shs-slide {
    color: inherit !important;
    text-decoration: none !important;
}

/* Elementor typography reset on headline */
.elementor-widget-shs_hero_slider .shs-headline {
    margin: 0 0 8px !important;
}

/* ═══════════════════════════
   RESPONSIVE DEFAULTS
   (Elementor controls override)
═══════════════════════════ */
@media (max-width: 1024px) {
    .shs-slider       { height: 480px; }
    .shs-glass-card   { width: 320px; }
}

@media (max-width: 767px) {
    .shs-slider       { height: 420px; }
    .shs-arr          { display: none; }

    .shs-glass-card {
        width: calc(100% - 32px) !important;
        left: 16px !important;
        right: 16px !important;
        transform: none !important;
        bottom: 44px;
    }

    .shs-headline     { font-size: 26px; }

    .shs-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .shs-btn-main {
        width: 100%;
        text-align: center;
    }
}
