/* ==========================================================================
   SEHSTOFF.CH - SITE CONSENT NOTICE STYLES
   ========================================================================== */

#sehstoff-notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999999;
  padding: 18px 24px;
  font-family: 'Istok Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-sizing: border-box;
}

.sehstoff-notice-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sehstoff-notice-text {
  flex: 1 1 500px;
}

.sehstoff-notice-text strong {
  display: block;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.sehstoff-notice-text p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

.sehstoff-notice-text a {
  color: #066aab;
  text-decoration: underline;
}

.sehstoff-notice-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sehstoff-btn-primary {
  background-color: #4b575f !important;
  background: #4b575f !important;
  color: #ffffff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.sehstoff-btn-primary:hover {
  background-color: #343c42 !important;
  background: #343c42 !important;
}

.sehstoff-btn-secondary {
  background-color: #f2f2f2 !important;
  background: #f2f2f2 !important;
  color: #333333 !important;
  border: 1px solid #d0d0d0 !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.sehstoff-btn-secondary:hover {
  background-color: #e4e4e4 !important;
  background: #e4e4e4 !important;
}

/* Floating Badge (Bottom Left) - Solid White Fill */
#sehstoff-notice-badge {
  position: fixed !important;
  bottom: 16px !important;
  left: 16px !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
  color: #4b575f !important;
  border: 1px solid #d5d5d5 !important;
  border-radius: 20px !important;
  padding: 7px 15px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
  z-index: 999990 !important;
  font-family: inherit !important;
  transition: all 0.2s ease !important;
}

#sehstoff-notice-badge:hover {
  background-color: #4b575f !important;
  background: #4b575f !important;
  color: #ffffff !important;
  border-color: #4b575f !important;
}

@media (max-width: 768px) {
  #sehstoff-notice-bar {
    padding: 16px;
  }
  .sehstoff-notice-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .sehstoff-notice-actions {
    width: 100%;
  }
  .sehstoff-btn-primary, .sehstoff-btn-secondary {
    flex: 1;
    text-align: center;
  }
}
