.wpcc-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  padding: 20px;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wpcc-banner {
    left: auto;
    right: 30px;
    bottom: 30px;
    width: 400px;
  }
}

.wpcc-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wpcc-content h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333 !important;
}

.wpcc-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666 !important;
}

.wpcc-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #333 !important;
  margin-top: 10px;
}

.wpcc-option-group {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.wpcc-option-group:last-child {
  border-bottom: none;
}

.wpcc-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpcc-toggle-icon {
  cursor: pointer;
  padding: 5px;
  font-size: 10px;
  color: #666;
  transition: transform 0.2s;
}

.wpcc-toggle-icon.open {
  transform: rotate(180deg);
}

.wpcc-details {
  margin-top: 10px;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcc-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #333 !important;
  width: 100%;
  font-size: 13px !important;
  min-width: fit-content;
}

.wpcc-options input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wpcc-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.wpcc-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: #f0f0f0;
  color: #333;
  text-align: center;
}

.wpcc-btn:hover {
  background: #e0e0e0;
}

.wpcc-btn-success {
  background: #28a745 !important;
  color: white !important;
}

.wpcc-btn-success:hover {
  background: #218838 !important;
}

.wpcc-btn-big {
  grid-column: span 2;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}

.wpcc-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999998;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wpcc-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.wpcc-badge svg {
  display: block;
}
