/* ==============================================
   BXSlider Wrapper
   ============================================== */
.bx-wrapper{
    position: relative;
    margin: 0; /* Remove default bottom margin */
    padding: 0; /* Remove default padding */
    box-shadow: none; /* Remove shadow */
    border: none; /* Remove border */
    background: none; /* Transparent background */
    width: 100%; /* Full page width */
    height: 100vh; /* Full page height */
    overflow: hidden; /* Hide any overflow */
}

/* ==============================================
   Slider Images
   ============================================== */
.bx-wrapper img{
    width: 100%; /* Fill width */
    height: 100vh; /* Full viewport height */
    object-fit: cover; /* Auto crop images to fit container */
    display: block;
}

/* ==============================================
   BXSlider List & Viewport
   ============================================== */
.bxslider{
    margin: 0;
    padding: 0;
    list-style: none; /* Remove bullet points */
}

.bx-viewport{
    width: 100%;
    height: 100vh; /* Full viewport height */
    -webkit-transform: translateZ(0);
}

/* ==============================================
   Remove default pager / auto controls / arrows
   ============================================== */
.bx-wrapper .bx-controls-auto,
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-direction{
    display: none; /* Hide all navigation */
}
/* ==============================================
   Shop Now Button
   ============================================== */

.shop-now-btn {
    position: absolute;
    left: 50%; 
    transform: translate(-50%, -300%);
    padding: 10px 30px;
    background-color: #1b4130;
    border-radius: 20px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;         
}

.shop-now-btn:hover {
    background-color: #e67830;
    color: #1b4130;
}


/* ============
   Responsive
   =========== */


/* ==========================================================================
   Medium Layout: 1280px.
   ========================================================================== */
@media only screen and (min-width: 200px) and (max-width: 1200px) {
  
}
/* ==========================================================================
   Tablet Layout: 768px. 
   ========================================================================== */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .shop-now-btn {
    transform: translate(-50%, -220%);
    padding: 10px 30px;       
}
}
/* ==========================================================================
   Wide Mobile Layout: 480px.
   ========================================================================== */
@media only screen and (min-width: 200px) and (max-width: 767px) {
  .shop-now-btn {
    font-size: 12px;
        
  }
  .shop-now-btn {
    transform: translate(-50%, -220%);
    padding: 10px 30px;
}

}
