input.product-checkbox {
   width: 25px;
   height: 25px;
   margin: auto;
   display: flex;
}

/* Default: normal table */
.product-table th,
.product-table td {
   text-align: center;
   vertical-align: middle;
}

/* Mobile view: stack rows */
@media (max-width: 768px) {
   .product-table thead {
      display: none;
      /* Hide table header on mobile */
   }

   .product-table,
   .product-table tbody,
   .product-table tr,
   .product-table td {
      display: block;
      width: 100%;
   }

   .product-table tr {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
      background: #fff;
   }

   .product-table td {
      text-align: left;
      padding: 8px 10px;
      position: relative;
   }

   .product-table td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
      color: #555;
   }

   /* First two items (checkbox + product image) side by side */
   .product-table td:first-child,
   .product-table td:nth-child(2) {
      display: inline-block;
      width: auto;
      vertical-align: middle;
      margin-right: 10px;
   }

   .product-thumbnail {
      max-width: 80px;
      height: auto;
   }
}

.cart-item {
   display: flex;
   align-items: center;
}

.cart-item-img img {
   border: 1px solid #ddd;
   border-radius: 5px;
}

.cart-item-details {
   flex: 1;
}

.cart-item-price {
   font-size: 14px;
   color: #000;
}

/* Offer count   */
.countdown-timer {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin: 10px 0;
}

.time-box {
   background: red;
   color: #fff;
   padding: 10px 15px;
   border-radius: 6px;
   text-align: center;
   min-width: 60px;
}

.time-box .number {
   display: block;
   font-size: 22px;
   font-weight: bold;
   line-height: 1.2;
}

.time-box .label {
   display: block;
   font-size: 14px;
}

/* Offer count   */

/* video Section Title  */

.video_top_header {
   text-align: center;
   color: var(--main-color);
   font-weight: 700;
}

.video_top_header h1 {
   font-weight: 600;
   margin-bottom: 0;
}

.video_top_header h2 {
   font-weight: 600;
}

.video_bottom {
   text-align: center;
   margin: 33px 5px 5px 5px;
}

.video_bottom h3 {
   font-size: 40px;
   margin-bottom: 0;
}

/* video Section Title  */

/* ----- size section ----  */
.size_section {
   text-align: center;
}


h2.mas_title {
   font-size: 35px;
   font-weight: 600;
   color: var(--main-color);
   margin-bottom: 10px;
}

/* Video Section */
.video-section {
   margin: 10px 0 30px 0;
}

h2.mas_title_with_bg {
   background: var(--main-color);
   padding: 30px 30px 22px 30px;
   color: #fff;
   font-size: 40px;
   text-align: center;
}

/* Slider Section */
.slider-section {
   background-color: #fff;
   margin: 20px;
}

ul li {
   margin-bottom: 8px;
   font-size: 25px;
   font-weight: 600;
   color: #000000;
}

ul li i {
   color: var(--main-color);
   /* green check */
   margin-right: 6px;
}

img {
   width: 100%;
}

a {
   text-decoration: none;
}

.mas_product {
   background: #fdeaf1;
   padding: 15px;
   margin-top: 20px;
   text-align: center;
}

.product_code {
   background: teal;
   color: #fff;
   text-align: center;
   margin: 8px 0;
   padding: 5px;
}

a.product_btn {
   background: var(--main-color);
   width: 100%;
   color: #fff;
   border-style: double;
   border-width: 7px;
   border-radius: 0px;
   color: #fff;
   border-color: #fff;
   font-size: 20px;
   /* padding: 5px; */
}

.order-section {
   background: #fff;
   border-top: 8px solid #FF5722;
   border-bottom: 8px solid #FF5722;
   margin: 30px 0;
   border-radius: 10px;
}

button#placeOrderBtn {
   background: var(--main-color);
   padding: 8px;
   color: #fff;
   font-size: 20px;
   border: none;
   border-radius: 5px;
}

.product-slider-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 20px;
}

.slider-title {
   text-align: center;
   margin-bottom: 30px;
   font-weight: 600;
}

.product-card {
   margin: 0 10px;
   border: 1px solid #eee;
   border-radius: 8px;
   overflow: hidden;
   transition: all 0.3s ease;
}

.product-card:hover {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   transform: translateY(-5px);
}

.product-img {
   width: 100%;
   /* height: 250px; */
   object-fit: cover;
}

.product-info {
   padding: 15px;
}

.product-title {
   font-size: 16px;
   margin-bottom: 5px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.product-price {
   font-weight: bold;
   color: #e63946;
}

.slick-prev:before,
.slick-next:before {
   color: #333;
   font-size: 30px;
}

.slick-prev {
   left: -35px;
}

.slick-next {
   right: -35px;
}

.slick-dots li button:before {
   font-size: 12px;
}

@media (max-width: 768px) {
   .product-img {
      height: 150px;
   }

   .slick-prev {
      left: -15px;
   }

   .slick-next {
      right: -15px;
   }
}