
  .offer-deadline .product-end {
    display: flex;
    width: 100%;
    height: 700px;
    overflow: hidden;
  }

  .offer-deadline .productdata {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: var(--white-color);
    position: relative;
  }

.offer-deadline .productdata::before,
.offer-deadline .productdata::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: url('{{ "star.png" | asset_url }}') no-repeat center/contain;
  opacity: 0.6;
}

  .offer-deadline .productdata::before {
    top: 25px;
    left: 25px;
  }

  .offer-deadline .productdata::after {
    bottom: 25px;
    right: 25px;
  }

  .offer-deadline .pro_cont {
    margin-right: auto;
    margin-left: auto;
    max-width: 80%;

  }

  .offer-deadline .pro_cont h2 {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .offer-deadline .pro_cont p {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
  }

  .offer-deadline .countDown ul.offer-ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .offer-deadline .countDown li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid var(--sub-primary-color-light);
    border-radius: 10px;
    background: var(--white-color-op-16);
    font-size: 14px;
  }

  .offer-deadline .countDown li span {
    font-size: 25px;
    font-weight: 700;
  }

  .offer-deadline .shopbtn {
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    padding: 14px 26px;
  }

  .offer-deadline .shopbtn:hover {
    opacity: 0.9;
  }

  .offer-deadline .productimage {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .offer-deadline .productimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Swiper Pagination */
  .offer-deadline .swiper-pagination {
    bottom: 20px;
  }

  .offer-deadline .swiper-pagination-bullet {
    width: 30px;
    height: 8px;
    border-radius: 20px;
    background: var(--sub-primary-color-light);
    opacity: 0.5;
  }

  .offer-deadline .swiper-pagination-bullet-active {
    background: var(--sub-primary-color3);
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .offer-deadline .product-end { height: 600px; }
    .offer-deadline .pro_cont h2 { font-size: 28px; }
  }

  @media (max-width: 767px) {
    .offer-deadline .product-end {
      flex-direction: column-reverse;
      height: auto;
    }
    .offer-deadline .productdata,
    .offer-deadline .productimage {
      width: 100%;
      height: 50vh;
    }
    .offer-deadline .pro_cont {
      text-align: center;
      margin: 0 auto;
      max-width: 90%;
    }
    .offer-deadline .pro_cont h2 { padding-right: 0; font-size: 24px; }
    .offer-deadline .countDown li { width: 60px; height: 60px; }
    .offer-deadline .countDown li span { font-size: 18px; }
  }



   /* Countdown Specific Styles */
  .countdown-container {
    margin: 20px 0;
  }

  .countdown-display {
    display: inline-block;
  }

  .countdown-list {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
  }

  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    border: 1px solid var(--white-color);
    padding: 8px;
    border-radius: 10px;
  }

  .countdown-value {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    display: block;
  }

  .countdown-label {
    font-size: 0.875rem;
    margin-top: 5px;
    opacity: 0.8;
  }

  .offer-ended-message {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
    text-align: center;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .countdown-list {
      gap: 10px;
    }

    .countdown-item {
      min-width: 50px;
    }

    .countdown-value {
      font-size: 1.5rem;
    }

    .countdown-label {
      font-size: 0.75rem;
    }
  }