.lg-mobile-slider {
    display: none;
    position: relative;
    overflow: hidden;
}

.lg-mobile-track {
    display: flex;
    transition: transform 0.4s ease;
}

.lg-mobile-slide {
    min-width: 100%;
    height: 80vh;
    position: relative;
}

.lg-mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for readability */
.lg-mobile-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.lg-mobile-content {
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.lg-mobile-content .eyebrow {
    font-size: 16px;
    letter-spacing: 2px;
    font-family: Poppins;
    font-weight: 600;
    opacity: 0.8;
    color: #c6a85b
}

.lg-mobile-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 8px 0;
    font-family: "Playfair Display";
    font-weight: 700;
    color: #fff;
}

.lg-mobile-content span:not(.eyebrow) {
    color: #c6a85b
    display: block;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: auto;
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldFoil 4s infinite linear;
}

@keyframes goldFoil {
  to { background-position: 200% center; }
}

.lg-mobile-content p {
    font-size: 18px;
    font-family: Poppins;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #d4af37;
    color: #000;
    font-size: 14px;
    border-radius: 4px;
}

.lg-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 5;
}

.lg-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-arrow::after, .lg-arrow::before {
    content: unset !important;
}

.lg-arrow:active {
    transform: scale(0.9);
}

.lg-mobile-slider button {
    border: unset;
    background: unset
}

@media (max-width: 1000px) {
    .lg-mobile-slider {
        display: block;
    }
}