.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cc-banner.cc-show {
  transform: translateY(0);
}

.cc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.cc-message {
  flex: 1 1 300px;
}

.cc-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.cc-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.cc-link {
  color: #bb8648;
  text-decoration: underline;
}

.cc-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cc-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

.cc-btn-accept {
  background: #bb8648;
  color: white;
}

.cc-btn-accept:hover {
  background: #9a6d39;
}

.cc-btn-reject {
  background: #6c757d;
  color: white;
}

.cc-btn-reject:hover {
  background: #5a6268;
}

.cc-btn-customize {
  background: transparent;
  color: #bb8648;
  border: 2px solid #bb8648;
}

.cc-btn-customize:hover {
  background: #bb8648;
  color: white;
}

.cc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cc-modal.cc-show {
  opacity: 1;
  visibility: visible;
}

.cc-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  margin: 1rem;
}

.cc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.cc-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cc-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.cc-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 4px;
}

.cc-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cc-category-title {
  font-weight: 600;
  color: #1a1a1a;
}

.cc-category-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.cc-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cc-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cc-slider {
  background-color: #bb8648;
}

input:checked + .cc-slider:before {
  transform: translateX(24px);
}

input:disabled + .cc-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cc-modal-footer {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.cc-btn-save {
  flex: 1;
  background: #bb8648;
  color: white;
  padding: 0.8rem;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}

.cc-btn-save:hover {
  background: #9a6d39;
}

@media (max-width: 768px) {
  .cc-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-actions {
    flex-direction: column;
  }

  .cc-btn {
    width: 100%;
    text-align: center;
  }

  .cc-modal-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .cc-modal-footer {
    flex-direction: column;
  }
}
