.shop-wrapper {
    background:#f8f8f8;
    padding:30px;
    border-radius:14px;
}
.demo-btn{
    
    display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  border: 1px solid gray;
  padding: 13px;
  border-radius: 10px;
  color:var(--ink);
}
.demo-btn:hover{
    text-decoration:none;
    background:#e5e5e5;
}
.demo-btn:visited{
    color:var(--ink);
}
/* Swiper styling */
.shop-swiper {
    width: 100%;
    max-width: 900px;
    height: 500px;       /* Force fixed height */
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}
.product-images .swiper-slide img {
    width: 100%;
    height: 100%;           /* fill slide container height */
    object-fit: contain;      /* crop/scale to fill nicely */
    display: block;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .shop-swiper {
        height: 300px;  /* smaller height on mobile */
    }
}
.shop-swiper .swiper-slide img {
    transition: transform 0.5s ease;
}

/* Optional zoom on hover */
.shop-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    background: rgba(255,255,255,0.8);
    border-radius:50%;
    padding:20px;
}

.swiper-pagination-bullet {
    background:#000;
    opacity:0.6;
}

.swiper-pagination-bullet-active {
    opacity:1;
}

.shop-nav{
    position:absolute;
    top:50%;
    width:100%;
    display:flex;
    justify-content:space-between;
}



.left-column .wp-block-heading{
    margin-bottom: 25px !important;
  margin-top: 25px !important;
}



  .container1 {
    max-width: 1400px;
    /* margin: 0 auto;
    padding: 2rem; */
    display: flex;
    /* gap: 2rem; */
    align-items: start;
  }

  /* Left column */
  .left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 70%;
    min-width: 70%;
    margin-right: 5px;
  }
.swiper-pagination-bullet{
    background: #fff;
}
  /* Image slider */
  .product-images { 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    width: 100%;
  max-width: 800px;

  aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
  .slider-nav { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
  .slider-nav button { width: 12px; height: 12px; border-radius: 50%; border: none; background-color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
  .slider-nav button.active { background-color: #111; }

  /* Product content below slider */
  .product-content {
    background-color: #fefefe;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* Sticky right panel */
  .product-info {
    position: sticky;
    /* top: 50%;
    transform: translateY(-50%); */
    top: 100px;
    background-color: #fefefe;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: calc(30% - 5px);


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .product-info h1 { font-size: 2rem; margin-bottom: 1rem; }
  .price { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: #ff4c4c; }
  .buy-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fff !important;
    background: linear-gradient(135deg, #ff4c4c, #ff7b00);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
  }
  .not-availaible{
    background: linear-gradient(135deg, #ff4c4c82, #ff0000db);
  }
  
  .buy-btn:hover { transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(255, 76, 76, 0.4);
     color: #f8f8f8 !important;
     text-decoration: none;
     }
.breadcrumb {
  margin-right: 5%;
}
  /* Responsive */
  @media(max-width: 1024px) {
    .container1 { 
      flex-direction: column;
     }
    .product-info {
       position: relative;
       top :5px;
       align-self: center;
       width: 100%;
         }
    .left-column{
      min-width: 100%;
      max-width: 100%;
      padding: 5px;
    }
  }


  .content-area{
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }