/* ================================= */
/*      FULL WIDTH BANNERS SECTION   */
/* ================================= */

/* كسر الكونتينر */
.custom-bnr-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

/* السكشن */
.bnr-sec {
  padding: 40px 30px;
  background: #ffffff;
  direction: rtl;
}

/* الجريد */
.bnr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* الكارت */
.bnr-card {
  position: relative;
  overflow: hidden;
  background: #e8e0d5;
  cursor: pointer;
}

.bnr-card:hover .bnr-img { transform: scale(1.05); }
.bnr-card:hover .bnr-overlay { opacity: 0.8; }
.bnr-card:hover .bnr-gold-line { opacity: 1; }
.bnr-card:hover .bnr-content { transform: translateY(0); }
.bnr-card:hover .bnr-cta { opacity: 1; }

/* الخط الذهبي */
.bnr-gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* الصورة */
.bnr-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.97);
}

/* Overlay */
.bnr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 10, 5, 0.65) 100%);
  transition: opacity 0.5s ease;
  opacity: 1;
}

/* المحتوى */
.bnr-content {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 36px 32px;
  z-index: 2;
  text-align: right;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.bnr-heading {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  color: #f7f4f0;
  margin: 0;
}

.bnr-heading span {
  color: #d4b896;
  font-weight: 700;
}

/* الزر */
.bnr-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #f7f4f0;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  letter-spacing: 1.5px;
}

.bnr-cta-line {
  display: block;
  width: 32px;
  height: 1px;
  background: #d4a574;
  transition: width 0.3s ease;
}

.bnr-card:hover .bnr-cta-line { width: 48px; }

/* Responsive */
@media (max-width: 768px) {
  .bnr-sec { padding: 30px 20px; }
  .bnr-grid { gap: 16px; }
  .bnr-img { height: 380px; }
  .bnr-content { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .bnr-grid { grid-template-columns: 1fr; }
  .bnr-img { height: 340px; }
}

@media (max-width: 480px) {
  .bnr-sec { padding: 24px 16px; }
  .bnr-img { height: 300px; }
  .bnr-content { padding: 24px 20px; }
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-bnr-wrapper {
  display: none !important;
}