/* RB Single Product Layout – WoodMart + Elementor
   Use with the following Elementor CSS classes:
   - Main 2-column section: rb-product-layout
   - Left image column: rb-image-card
   - Right info column: rb-info-card
   - Add to Cart button: rb-btn-primary
   - Buy Now button: rb-btn-secondary
   - Call Now button: rb-btn-call
   - WhatsApp button: rb-btn-whatsapp
   - Description section wrapper: rb-desc-wrap
   - Description title: rb-desc-title
   - Description box container: rb-desc-box
*/

/* ==== GLOBAL PRODUCT LAYOUT ==== */
.single-product .rb-product-layout {
  max-width: 1180px;
  margin: 30px auto;
  padding: 0 15px;
}

/* দুই পাশের card style */
.single-product .rb-image-card,
.single-product .rb-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* image box একটু বড় দেখাতে */
.single-product .rb-image-card .woocommerce-product-gallery,
.single-product .rb-image-card .elementor-widget-woocommerce-product-images {
  margin: 0 !important;
}

/* TITLE + PRICE */
.single-product .rb-info-card .product_title,
.single-product .rb-info-card .elementor-widget-woocommerce-product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.single-product .rb-info-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #111c4e;
  margin-bottom: 10px;
}

/* STATUS / SKU ছোট text (যদি আলাদা widget use করো, সেখানে class rb-meta দিতে পারো) */
.single-product .rb-info-card .rb-meta,
.single-product .rb-info-card .sku,
.single-product .rb-info-card .stock {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* quantity + add-to-cart row */
.single-product .rb-info-card .cart {
  margin-top: 15px;
}

/* ==== BUTTON STYLES ==== */
.single-product .rb-btn-primary,
.single-product .rb-btn-secondary,
.single-product .rb-btn-call,
.single-product .rb-btn-whatsapp {
  display: block;
  width: 100% !important;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}

/* Add to Cart – গাঢ় নীল */
.single-product .rb-btn-primary {
  background: #071c5b;
  color: #ffffff;
}
.single-product .rb-btn-primary:hover {
  background: #040f38;
}

/* Buy Now – হালকা নীল */
.single-product .rb-btn-secondary {
  background: #1457c7;
  color: #ffffff;
}
.single-product .rb-btn-secondary:hover {
  background: #0d3d8e;
}

/* Call Now – ডার্ক গ্রে */
.single-product .rb-btn-call {
  background: #222222;
  color: #ffffff;
}
.single-product .rb-btn-call:hover {
  background: #000000;
}

/* WhatsApp – সবুজ */
.single-product .rb-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}
.single-product .rb-btn-whatsapp:hover {
  background: #1eb85a;
}

/* ==== নিচের “পণ্যের বিবরণ” section ==== */
.single-product .rb-desc-wrap {
  margin-top: 40px;
}

.single-product .rb-desc-title {
  display: inline-block;
  padding: 10px 30px;
  background: #fff7de;
  border-radius: 4px 4px 0 0;
  border: 1px solid #ffd36b;
  border-bottom: none;
  font-weight: 700;
  font-size: 18px;
}

.single-product .rb-desc-box {
  border: 1px solid #ffd36b;
  background: #fffdf4;
  padding: 20px 25px;
  border-radius: 0 8px 8px 8px;
  margin-top: -1px;
}

.single-product .rb-desc-box ul {
  margin: 0 0 10px 18px;
}
.single-product .rb-desc-box li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.single-product .rb-desc-box p:last-child {
  margin-top: 10px;
  font-weight: 600;
}

/* ==== Responsive tweaks ==== */
@media (max-width: 768px) {
  .single-product .rb-product-layout {
    margin-top: 15px;
  }
  .single-product .rb-image-card,
  .single-product .rb-info-card {
    margin-bottom: 15px;
  }
}
