/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product_details_section {
    padding: 70px 0 80px;
    background: #fff;
  }
  
  
  /* ---------------------------------------------------------
     PRODUCT GALLERY
  --------------------------------------------------------- */
  
  .product_gallery {
    position: relative;
  }
  
  .product_main_image {
    position: relative;
    width: 100%;
    background: #f8f8f8;
    overflow: hidden;
  }
  
  .product_main_image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease;
  }
  
  .gallery_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 2;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery_arrow:hover {
    background: #198754;
    color: #fff;
    border-color: #198754;
  }
  
  .gallery_prev {
    left: 15px;
  }
  
  .gallery_next {
    right: 15px;
  }
  
  
  /* ---------------------------------------------------------
     THUMBNAILS
  --------------------------------------------------------- */
  
  .product_thumbnails_wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  
  .product_thumbnails {
    display: flex;
    gap: 12px;
    overflow: hidden;
    flex: 1;
  }
  
  .product_thumbnail {
    flex: 0 0 105px;
    height: 90px;
    background: #f8f8f8;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .product_thumbnail:hover,
  .product_thumbnail.active {
    border-color: #198754;
  }
  
  .thumbnail_arrow {
    flex: 0 0 35px;
    height: 35px;
    border: 0;
    background: transparent;
    font-size: 25px;
    color: #333;
    cursor: pointer;
  }
  
  .thumbnail_arrow:hover {
    color: #198754;
  }
  
  
  /* ---------------------------------------------------------
     PRODUCT INFORMATION
  --------------------------------------------------------- */
  
  .product_information {
    padding-left: 25px;
    position: relative;
  }
  
  .product_top_navigation {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .product_top_navigation button {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #eee;
    color: #aaa;
    margin-left: 3px;
  }
  
  .product_title {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin: 0 70px 12px 0;

  }
  
  .product_rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .product_rating .stars,
  .related_rating,
  .review_stars {
    color: #e5b94c;
    letter-spacing: 2px;
    font-size: 14px;
  }
  
  .review_count {
    color: #aaa;
    font-size: 13px;
  }
  
  .product_price {
    color: #009247;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .product_separator {
    height: 1px;
    background: #eee;
    margin: 20px 0;
  }
  
  .product_short_description {
    color: #777;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 0;
  }
  
  
  /* ---------------------------------------------------------
     CART
  --------------------------------------------------------- */
  
  .product_cart {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .quantity_box {
    display: flex;
    height: 42px;
    border: 1px solid #333;
  }
  
  .quantity_box button {
    width: 38px;
    border: 0;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  
  .quantity_box input {
    width: 45px;
    border: 0;
    text-align: center;
    outline: none;
    font-size: 14px;
  }
  
  .add_cart_btn {
    height: 42px;
    min-width: 160px;
    border: 0;
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .add_cart_btn:hover {
    background: #198754;
  }
  .buy_now_btn {
    height: 42px;
    min-width: 160px;
    padding: 0 25px;
    border: 0;
    background: #198754;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .buy_now_btn:hover {
    background: #146c43;
  }
  
  /* ---------------------------------------------------------
     WISHLIST / COMPARE
  --------------------------------------------------------- */
  
  .product_actions {
    display: flex;
    gap: 35px;
    margin-top: 25px;
  }
  
  .product_actions button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #333;
    font-size: 13px;
    cursor: pointer;
  }
  
  .product_actions button i {
    margin-right: 7px;
  }
  
  .product_actions button:hover {
    color: #198754;
  }
  
  
  /* ---------------------------------------------------------
     META
  --------------------------------------------------------- */
  
  .product_meta p {
    color: #888;
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .product_meta strong {
    color: #555;
    font-weight: 500;
  }
  
  
  /* ---------------------------------------------------------
     SOCIAL SHARE
  --------------------------------------------------------- */
  
  .product_share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .product_share > span {
    color: #777;
    font-size: 13px;
  }
  
  .product_share a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
  }
  
  .product_share a:hover {
    color: #198754;
  }
  
  
  /* =========================================================
     TABS
  ========================================================= */
  
  .product_tabs_section {
    margin-top: 55px;
    border-top: 1px solid #eee;
  }
  
  .product_tabs {
    justify-content: center;
    border-bottom: 1px solid #eee;
  }
  
  .product_tabs .nav-link {
    border: 0;
    border-radius: 0;
    padding: 22px 25px;
    color: #aaa;
    font-weight: 600;
    font-size: 15px;
  }
  
  .product_tabs .nav-link:hover,
  .product_tabs .nav-link.active {
    color: #009247;
    background: transparent;
  }
  
  .product_description,
  .product_reviews {
    padding: 35px 0 20px;
    color: #777;
    font-size: 13px;
    line-height: 1.9;
  }
  
  .product_reviews h5 {
    color: #333;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .single_review {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .review_avatar {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
  }
  
  
  /* =========================================================
     RELATED PRODUCTS
  ========================================================= */
  
  .related_products_section {
    margin-top: 45px;
    padding-top: 50px;
    border-top: 1px solid #eee;
  }
  
  .section_heading {
    text-align: center;
    margin-bottom: 45px;
  }
  
  .section_heading h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
  }
  
  .section_heading span {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 12px;
  }
  
  .section_heading span::before,
  .section_heading span::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 3px;
    background: #009247;
    top: 4px;
    border-radius: 50%;
  }
  
  .section_heading span::before {
    left: 0;
    transform: rotate(8deg);
  }
  
  .section_heading span::after {
    right: 0;
    transform: rotate(-8deg);
  }
  
  
  .related_product {
    margin-bottom: 30px;
  }
  
  .related_product_image {
    position: relative;
    height: 250px;
    background: #f8f8f8;
    overflow: hidden;
  }
  
  .related_product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }
  
  .related_product:hover .related_product_image img {
    transform: scale(1.04);
  }
  
  .sale_badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    background: #009247;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 8px;
  }
  
  .related_product_info {
    position: relative;
    padding-top: 12px;
  }
  
  .related_category {
    color: #aaa;
    font-size: 11px;
    display: block;
    margin-bottom: 5px;
  }
  
  .related_rating {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 11px;
  }
  
  .related_product_info h4 {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0 10px;
    padding-right: 70px;
  }
  
  .related_price {
    color: #009247;
    font-size: 14px;
    font-weight: 700;
  }
  
  .related_price del {
    color: #aaa;
    font-size: 11px;
    font-weight: 400;
    margin-left: 5px;
  }
  
  /* =========================================================
   E-COMMERCE PLATFORM AVAILABILITY
========================================================= */

.ecommerce_availability {
  margin-top: 25px;
  border: 1px solid #dcefe5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

/* Heading */
.ecommerce_heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f1faf5;
  border-bottom: 1px solid #dcefe5;
  color: #078b4f;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.ecommerce_heading i {
  font-size: 17px;
}


/* Platform Row */
.ecommerce_platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 15px;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.25s ease;
}

.ecommerce_platform:last-child {
  border-bottom: none;
}

.ecommerce_platform:hover {
  background: #fafdfb;
}


/* Left Side */
.platform_info {
  display: flex;
  align-items: center;
  gap: 15px;
}


/* Platform Logo */
.platform_logo {
  width: 105px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
}


/* Shwapno */
.shwapno_logo {
  color: #e51b23;
  border: 1px solid #eeeeee;
}


/* PandaMart */
.pandamart_logo {
  color: #e91e63;
  font-size: 17px;
}

.pandamart_logo span {
  font-weight: 700;
}

.pandamart_logo b {
  font-weight: 400;
}


/* Rokomari */
.rokomari_logo {
  color: #222;
  font-size: 17px;
}


/* Platform Details */
.platform_details h5 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.platform_details span {
  font-size: 12px;
}

.platform_details strong {
  font-size: 15px;
  margin-right: 3px;
}


/* Available */
.stock_available {
  color: #07904f;
}


/* Stock Out */
.stock_out {
  color: #e53935;
}


/* View Product Button */
.platform_btn {
  min-width: 125px;
  padding: 9px 15px;
  border: 1px solid #07904f;
  border-radius: 3px;
  background: #fff;
  color: #07904f;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.platform_btn:hover {
  background: #07904f;
  color: #fff;
  text-decoration: none;
}

.platform_btn i {
  margin-left: 5px;
}


/* Disabled */
.disabled_btn {
  border-color: #ddd;
  color: #aaa;
  background: #f7f7f7;
  cursor: not-allowed;
}

.disabled_btn:hover {
  background: #f7f7f7;
  color: #aaa;
}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 576px) {

  .ecommerce_heading {
      font-size: 12px;
      padding: 12px;
  }

  .ecommerce_platform {
      padding: 10px;
  }

  .platform_info {
      gap: 8px;
  }

  .platform_logo {
      width: 75px;
      height: 35px;
      font-size: 11px;
  }

  .platform_details h5 {
      font-size: 12px;
  }

  .platform_details span {
      font-size: 10px;
  }

  .platform_details strong {
      font-size: 12px;
  }

  .platform_btn {
      min-width: 85px;
      padding: 7px 8px;
      font-size: 10px;
  }
}
  /* =========================================================
     RESPONSIVE
  ========================================================= */
  
  @media (max-width: 991px) {
  
    .product_information {
      padding-left: 0;
      padding-top: 40px;
    }
  
    .product_main_image img {
      height: 450px;
    }
  
    .product_title {
      font-size: 25px;
    }
  
    .related_product_image {
      height: 220px;
    }
  
  }
  
  
  @media (max-width: 767px) {
  
    .product_details_section {
      padding: 40px 0 50px;
    }
  
    .product_main_image img {
      height: 350px;
    }
  
    .product_thumbnail {
      flex-basis: 80px;
      height: 70px;
    }
  
    .product_title {
      font-size: 22px;
    }
  
    .product_cart {
      flex-wrap: wrap;
    }
  
    .product_actions {
      gap: 20px;
      flex-wrap: wrap;
    }
  
    .product_tabs .nav-link {
      padding: 16px 12px;
      font-size: 13px;
    }
  
    .related_products_section {
      margin-top: 30px;
    }
  
    .section_heading h2 {
      font-size: 22px;
    }
  
    .related_product_image {
      height: 180px;
    }
  
  }
  
  
  @media (max-width: 480px) {
  
    .product_main_image img {
      height: 280px;
    }
  
    .product_thumbnail {
      flex-basis: 65px;
      height: 60px;
    }
  
    .add_cart_btn {
      min-width: 140px;
    }
  
    .related_product_image {
      height: 150px;
    }
  
    .related_product_info h4 {
      font-size: 12px;
    }
  
  }