﻿
.owl-prev {
    display: none !important;
}

.owl-next {
    display: none !important;
}

.owl-thumbs {
    display: none;
}

.single-callto-action .callto-thumb {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

/*.single-callto-action h2 {
    font-size: 18px;font-weight: 600;
}*/

.single-callto-action p {
    margin: 0;
    color: #555;
}


@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.97);
    }
}


/* Popup Box */
.popup {
    margin-top: 80px;
    background: #fff;
    width: 80%;
    max-width: 750px;
    border-radius: 28px;
    display: flex;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #9e2b2b;
    color: #fff;
    border: none;
    font-size: 26px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

/* Left Section */
.popup-left {
    width: 50%;
    padding: 45px;
    box-sizing: border-box;
}

    .popup-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #7a2e2e;
        margin-bottom: 16px;
    }

.subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #7a2e2e;
    margin-bottom: 28px;
}

/* Input */
.popup-input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: none;
    background: #faf0f5;
    margin-bottom: 22px;
    font-size: 16px;
}

/* Button */
.popup-btn {
    width: 100%;
    background: #7a2e2e;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

/* Right Section (Image) */
.popup-right {
    width: 50%;
}

    .popup-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Mobile */
@media(max-width: 768px) {
    .popup {
        flex-direction: column;
        width: 92%;
    }

    .popup-left, .popup-right {
        width: 100%;
    }

        .popup-right img {
            height: 280px;
            object-fit: cover;
        }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Base card styling */
.new-products-carousel-2 .card {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

/* Product image default */
.new-products-carousel-2 .product-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 10px;
}

/* Large cards */
.new-products-carousel-2 .owl-item.large .product-img {
    height: 420px;
    transform: scale(1.05);
}

/* Medium cards */
.new-products-carousel-2 .owl-item.medium .product-img {
    height: 300px;
    transform: scale(0.95);
    opacity: 0.9;
}

/* Depth effect */
.new-products-carousel-2 .owl-item.large {
    transform: translateY(-10px);
    z-index: 3;
}

.new-products-carousel-2 .owl-item.medium {
    transform: translateY(10px);
    z-index: 2;
}

/* Hover effect */
.new-products-carousel-2 .card:hover .product-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Owl nav buttons */
.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

    .owl-nav button.owl-prev {
        left: -15px;
    }

    .owl-nav button.owl-next {
        right: -15px;
    }

.video-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-wrapper .ratio {
    flex: 1;
}

/* Optional: add bottom margin between rows on mobile */
@media (max-width: 576px) {
    .video-wrapper {
        margin-bottom: 10px;
    }
}

.card.border {
    border-color: lightgray !important;
}

