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

#promoslide {
    background: #fff;
}

#promoslide .promo-inner-section {
    font-family: 'Poppins', sans-serif;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

@media (max-width: 900px) {
    #promoslide .promo-inner-section {
        padding: 20px 0;
    }
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-areas: "stack";
    padding: 0 50px;
    box-sizing: border-box;
    transition: height 0.3s ease;
}

.promo-container {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    align-self: start;
}

.promo-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    position: relative;
}

@media (min-width: 992px) {
    .promo-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 60px;
        padding: 0;
    }
}

/* Left Image Card & Arrows Overlay */
.promo-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
}

.promo-visual img.main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

@media (min-width: 992px) {
    .promo-visual img.main-img {
        aspect-ratio: 1/1;
    }
}

/* Global Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #e2e8f0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #64748b;
}

.nav-arrow:hover {
    background: #fff;
    border-color: #df1a25;
    color: #df1a25;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev { left: 10px; }
.nav-next { right: 10px; }

/* Mobile specific adjustments */
@media (max-width: 991px) {
    .slider-wrapper {
        padding: 0 !important;
    }

    .nav-arrow {
        top: 40vw;
        background: rgba(255, 255, 255, 0.7);
        border-color: transparent;
        width: 40px;
        height: 40px;
    }

    .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-50%) scale(1.05);
    }

    .nav-prev { left: 10px; }
    .nav-next { right: 10px; }
}

/* Right Content */
.promo-content {
    max-width: 550px;
    color: #475569;
    width: 100%;
    padding: 0 10px;
}

@media (min-width: 992px) {
    .promo-content {
        padding: 0;
    }
}

.promo-content h1 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.promo-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #df1a25, #ffcccc);
    border-radius: 4px;
    margin-bottom: 25px;
}

.promo-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
}

.promo-desc p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.more-text-hidden { display: none; }
.more-text-visible { display: inline; }

/* Buttons */
.promo-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-brand-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #df1a25 0%, #b3121b 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    font-size: 15px;
    box-shadow: 0 4px 6px -1px rgba(223, 26, 37, 0.3);
}

.btn-brand-gradient:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 10px -1px rgba(223, 26, 37, 0.4);
}

.btn-outline-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #334155;
    border: 2px solid #cbd5e1;
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 15px;
    cursor: pointer;
}

.btn-outline-simple:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: #94a3b8;
}

.dot.active {
    width: 12px;
    height: 12px;
    background-color: #df1a25;
    box-shadow: 0 0 0 2px rgba(223, 26, 37, 0.2);
}
