/* Cookie Banner CSS starts */
.cm-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #1d1414;
  color: #fff;
  padding: 20px 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.cm-banner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.cm-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cm-buttons button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid #9d204e;
  color: #9d204e;
  transition: background 0.3s ease;
}

.cm-buttons button:hover {
  background: #9d204e;
  color: #fff;
}
.cm-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #9d204e;
  font-size: 24px;
  line-height: 1;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

.cm-banner-close:hover {
  transform: scale(1.1);
}

/* Cookie Banner Ends */

/* Cookie Modal CSS starts */

.cm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1d1414;
  color: #fff;
  padding: 30px;
  display: none;
  border-radius: 10px;
  width: 400px;
  z-index: 10000;
}
#modal-header {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: underline;
}

.customize-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  line-height: 10px;
  gap: 10px;
  font-size: 16px;
}

#cm-save {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  background: #9d204e;
  color: #fff;
  transition: background 0.3s ease;
}
/* Cookie Modal CSS ends  */

/* Floating Cookie Button */
.cm-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #9d204e;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(209, 59, 177, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  font-size: 24px;
  padding: 0;
}

.cm-floating-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.cm-floating-btn:hover {
  background: #ff796a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(250, 157, 185, 0.6);
}

.cm-floating-btn:active {
  transform: scale(0.95);
}

/* Hide floating button if banner is displayed */
#cm-banner:not([style*="display: none"]) ~ .cm-floating-btn {
  display: none !important;
}

/* Close Buttons */
.cm-close-btn {
  background: transparent;
  border: 1px solid #9d204e;
  border-radius: 5px;
  font-size: 28px;
  color: #c4c4c4;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  line-height: 1;
  margin-top: 10px;
}

.cm-close-btn:hover {
  transform: scale(1.2);
}

.cm-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #c4c4c4;
}
