 /* Video Card Wrapper */
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

video {
    width: 100%;
    border-radius: 20px;
}

/* Bottom White Product Section */
.bottom-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    background: #fff;
    width: 85%;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8px;
}

.bottom-card img {
    position: absolute;
    width: 60px;
    height: 100px;
    border-radius: 34px;
    object-fit: cover;
    bottom: 10px;
}

.bottom-card .info {
    flex: 1;
    padding-left: 10px;
    margin-left: 56px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.bottom-card .info h6 {
    font-size: 12px;
    font-weight: 400;
    color: #1a73e8;
}

.bottom-card h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    line-height: 13px;
}

.bottom-card .price {
    font-weight: 600;
    color: #0a3f85;
    font-size: 16px;
    margin: 0px 0px 0px 38px !important;
}

.slick-slider-vedio .col-10 {
    margin: 0px 6px !important;
    cursor: pointer;
}

.image-slider-modal img {
    width: 130px !important;
    margin: 0px 4px;
}

.title-modal {
    font-size: 15px;
    color: #0a3f85;
}

.box-modaloverflow {
    height: 56%;
    overflow: auto;
}

.description-modal {
    font-size: 12px;
    color: #000;
}

.nav-item .nav-link.active {
    margin: 0px 0px 10px 0px;
    border: 1px solid #113f8a !important;
    border-radius: 30px;
    background-color: #113f8a !important;
    color: #fff !important;
}

.nav-item .nav-link {
    margin: 0px 0px 10px 10px !important;
    border-radius: 30px !important;
    border: 1px solid #113f8a !important;
    color: #113f8a !important;
}

.image-slider-modal {
    width: 100%;
    display: flex;
    overflow: auto;
}

.slick-slider-4 .image-slot, .slick-slider-5 .image-slot {
    margin: 0px 5px;
}

.video-thumbnail {
      width: 320px;
      cursor: pointer;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .video-thumbnail:hover {
      transform: scale(1.05);
    }

    .video-thumbnail video {
      width: 100%;
      display: block;
    }

    .modal-dialog {
      max-width: 900px;
    }

    .modal-content {
      border-radius: 12px;
      overflow: hidden;
    }

    .video-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-info {
      padding: 20px;
    }

    .product-info img {
      width: 100%;
      border-radius: 10px;
    }

    .price {
      font-weight: 700;
      color: #000;
      margin-top: 5px;
    }

    .btn-add {
      background-color: #FFD633;
      border: none;
      color: #000;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 18px;
      transition: background-color 0.3s ease;
    }

    .btn-add:hover {
      background-color: #ffcc00;
    }

@media (max-width: 768px) {
    .bottom-card {
    width: 90%;
    padding: 6px 12px;
    }
    .bottom-card img {
    width: 45px;
    height: 45px;
    }
}