/* ── DROPDOWN NAV ── */
.nav-item.dropdown { position: relative }

/* ── Desktop — hover se open ── */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
  .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
  }
}

.dropdown-menu {
  z-index: 99999 !important;
  border: 1px solid #d8e2ee !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 32px rgba(30,42,58,0.15) !important;
  padding: 8px 0 !important;
  min-width: 200px !important;
  background: #fff !important;
}

.dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #4a5568 !important;
  padding: 10px 20px !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  background: transparent !important;
  white-space: nowrap;
}
.dropdown-item i { color: #4a7fc1; font-size: 14px; width: 16px; flex-shrink: 0 }
.dropdown-item:hover,
.dropdown-item:focus {
  background: #ECEDF0 !important;
  color: #4a7fc1 !important;
  padding-left: 26px !important;
}
.dropdown-toggle::after { vertical-align: middle; margin-left: 4px }

/* ── MOBILE ── */
@media (max-width: 991.98px) {

  /* Dropdown toggle — arrow down/up icon */
  .dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Custom arrow using bi icon — Bootstrap ka ::after hata ke apna lagao */
  .dropdown-toggle::after { display: none !important }

  .dropdown-toggle .dd-arrow {
    font-size: 18px;
    transition: transform 0.25s ease;
    color: #4a7fc1;
    margin-left: auto;
  }

  /* Jab dropdown open ho to arrow rotate karo */
  .dropdown-toggle[aria-expanded="true"] .dd-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: 1px solid #ECEDF0 !important;
    border-radius: 8px !important;
    margin: 4px 8px 8px 8px !important;
    background: #f8faff !important;
    padding: 4px 0 !important;
  }

  .dropdown-item {
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 6px;
  }

  .dropdown-item:hover {
    padding-left: 20px !important;
  }
}

/* ── PRODUCT PAGE LAYOUT ── */
.prod-detail-section { padding: 80px 0 }
.prod-detail-section.bg-blue { background: #ECEDF0 }
.prod-detail-section.bg-white { background: #fff }

.pd-img { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(30,42,58,0.12) }
.pd-img img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform 0.5s }
.pd-img:hover img { transform: scale(1.04) }

.pd-content { padding: 10px 0 }
.pd-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #4a7fc1; background: #ECEDF0; padding: 4px 14px; border-radius: 50px; margin-bottom: 14px }
.pd-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,32px); font-weight: 700; color: #1e2a3a; margin-bottom: 14px; line-height: 1.25 }
.pd-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: #4a7fc1 }
.pd-desc { font-size: 14.5px; color: #4a5568; line-height: 1.75; margin-bottom: 18px }
.pd-features { list-style: none; padding: 0; margin: 0 0 24px }
.pd-features li { font-size: 13.5px; color: #4a5568; padding: 7px 0; border-bottom: 1px solid #ECEDF0; display: flex; align-items: center; gap: 10px }
.pd-features li:last-child { border: none }
.pd-features li i { color: #4a7fc1; font-size: 15px; flex-shrink: 0 }
.pd-cta-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px }

@media (max-width: 767px) {
  .prod-detail-section { padding: 50px 0 }
  .pd-img img { height: 260px }
}
