/* ===================================================
   Burford Slider — Styles
   =================================================== */

/* Wrapper */
.burford-slider-wrapper {
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e5e4e4;
    border-bottom: 1px solid #e5e4e4;
    padding: 25px 0 0 0;
    overflow: visible;
    position: relative;
}

/* Swiper container */
.burford-slider {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 600px;
    position: relative;
    overflow: hidden;
}

/* Each slide */
.burford-slide {
    height: 600px;
    display: flex;
    align-items: center;
}

.burford-slide__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    gap: 40px;
}

/* Left content column */
.burford-slide__content {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

/* Title — matches "The Burford 2200M Series" style */
.burford-slide__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    letter-spacing: -2px;
    line-height: 1.2;
    margin: 0 0 8px 0;
    padding: 0;
}

/* Subtitle — matches "Smart Servo Twist Tyer" style */
.burford-slide__subtitle {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #860001;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 12px 0;
    padding: 0;
}

/* Description text */
.burford-slide__description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 30px 0;
    padding: 0;
}

.burford-slide__description p {
    margin: 0 0 8px 0;
}

/* CTA Button — matches "View This Product" style */
.burford-slide__button-wrap {
    margin-top: 10px;
}

.burford-slide__button {
    display: inline-block;
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background-color: #860001;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.burford-slide__button:hover,
.burford-slide__button:focus {
    background-color: #6b0001;
    color: #ffffff;
    text-decoration: none;
}

/* Right media column */
.burford-slide__media {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burford-slide__video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.burford-slide__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.burford-slide__image {
    width: 100%;
}

.burford-slide__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================================
   Navigation Arrows
   =================================================== */
.burford-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 60px;
    background-color: rgba(128, 128, 128, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.burford-slider-wrapper:hover .burford-slider__arrow {
    opacity: 1;
}

.burford-slider__arrow:hover {
    background-color: rgba(100, 100, 100, 0.9);
}

.burford-slider__arrow--prev {
    left: 0;
}

.burford-slider__arrow--next {
    right: 0;
}

.burford-slider__arrow svg {
    display: block;
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1024px) {
    .burford-slider {
        height: auto;
    }

    .burford-slide {
        height: auto;
    }

    .burford-slide__inner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .burford-slide__content {
        flex: 0 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .burford-slide__media {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .burford-slide__title {
        font-size: 32px;
    }

    .burford-slide__subtitle {
        font-size: 20px;
    }

    .burford-slide__description {
        font-size: 14px;
    }

    .burford-slide__button-wrap {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burford-slider-wrapper {
        padding: 15px 0 0 0;
    }

    .burford-slide__title {
        font-size: 26px;
        letter-spacing: -1px;
    }

    .burford-slide__subtitle {
        font-size: 18px;
    }

    .burford-slide__description {
        font-size: 13px;
    }

    .burford-slider__arrow {
        width: 36px;
        height: 46px;
    }

    .burford-slider__arrow svg {
        width: 14px;
        height: 26px;
    }
}
