/* =========================================
   COOKIE CONSENT BANNER (BOTTOM-LEFT)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #8fbd1a;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  box-sizing: border-box;
  font-family: inherit; /* Website ke global font ko safe rakhta hai */
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.cookie-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.8;
}

.cookie-content a {
  color: #8fbd1a;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-accept {
  background-color: #8fbd1a;
  color: #000000;
}

.btn-accept:hover {
  background-color: #a4d822;
}

.btn-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
  border-color: #ffffff;
}

/* Mobile Responsive Alignment */
@media (max-width: 576px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 100%;
    width: auto;
  }
}