/* ===================================================
   CUSTOM CSS - Safe to add new styles below
   This file does not modify the original theme CSS.
   =================================================== */

/* --- Exclusive Featured Banner --- */
.section-exclusive-banner { margin: 24px 0; }

@keyframes reddotpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.exclusive-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #000;
  padding: 16px 24px;
}
.exclusive-banner-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.exclusive-banner .dot-exclusive {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8001c;
  flex-shrink: 0;
  animation: reddotpulse 1.4s ease-in-out infinite;
}
.exclusive-banner .title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.exclusive-banner .divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.exclusive-banner .subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0;
  flex: 1;
}
.exclusive-banner .btn-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8001c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.exclusive-banner .btn-exclusive:hover { background: #b5001a; }

/* --- Tablet --- */
@media (max-width: 992px) {
  .exclusive-banner .title { font-size: 21px; }
  .exclusive-banner .subtitle { font-size: 13px; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .exclusive-banner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    gap: 10px;
  }
  .exclusive-banner .title {
    font-size: 18px;
    white-space: normal;
  }
  .exclusive-banner .divider { display: none; }
  .exclusive-banner .subtitle {
    font-size: 13px;
  }
  .exclusive-banner .btn-exclusive {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}