#cookie-consent {
  z-index: 1;
  background: transparent !important;
  color: #fff;
  border: none !important;
  box-shadow: none;
  text-align: left;
  font-size: 1.08em;
  transform: none !important;
  margin: 0;
}
@media (max-width: 600px) {
  #cookie-consent {
    z-index: 1;
  }
}
#customer-service {
  z-index: 1100 !important;
}
#cookie-consent-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: 0 auto;
  background: #2d0036;
  color: #ff8edb;
  border-radius: 24px;
  box-shadow: 0 8px 48px #ff8edbcc, 0 2px 16px #ff3fa488;
  padding: 28px 36px 24px;
  z-index: 9999;
  display: none;
  min-width: 260px;
  max-width: 90vw;
  text-align: center;
  font-size: 1.08em;
  animation: fadeInUp 0.7s;
  transform: none !important;
}
#cookie-consent-box.show {
  display: block;
}
#cookie-consent-box .btn {
  background: #ff3fa4;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  margin: 0 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 16px #ff3fa488;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
}
#cookie-consent-box .btn.reject {
  background: #ff8edb;
  color: #2d0036;
}
#cookie-consent-box .btn:hover {
  background: #fff;
  color: #ff3fa4;
  box-shadow: 0 0 32px #ff8edbcc;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
#cookie-consent::after, #cookie-consent::before {
  display: none !important;
  content: none !important;
}
.cookie-consent-content {
  max-width: 340px;
  margin: 0;
  background: #fff;
  color: #2d0036;
  border-radius: 18px 18px 18px 6px;
  box-shadow: 0 4px 32px #ff8edb88, 0 2px 8px #ff3fa488;
  padding: 16px 18px 10px 18px;
  font-size: 1em;
  text-align: center;
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  animation: fadeIn 0.4s;
  border: 1.5px solid #ff8edb;
}
.cookie-consent-content h2 {
  font-size: 1.12em;
  margin: 0 0 8px 0;
  color: #ff3fa4;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #fff8, 0 1px 0 #ff8edbcc;
}
.cookie-consent-content p {
  font-size: 0.98em;
  margin: 0 0 10px 0;
  line-height: 1.5;
  color: #2d0036;
  text-shadow: 0 1px 4px #fff8;
}
.cookie-consent-content button {
  margin: 8px 6px 0 6px;
  padding: 7px 22px;
  border-radius: 20px;
  font-size: 1em;
  font-weight: bold;
  border: none;
  background: linear-gradient(90deg, #ff3fa4 0%, #ff8edb 100%);
  color: #fff;
  box-shadow: 0 2px 12px #ff8edb55, 0 1px 4px #ff3fa455;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px #ff3fa455, 0 0 2px #fff8;
}
.cookie-consent-content button:hover {
  background: linear-gradient(90deg, #ff8edb 0%, #ff3fa4 100%);
  color: #2d0036;
  box-shadow: 0 0 24px #ff8edbcc, 0 2px 8px #ff3fa4cc;
  transform: scale(1.06) rotate(-2deg);
}
@media (max-width: 600px) {
  .cookie-consent-content {
    position: fixed !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 14px 14px 0 0 !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    transition: none !important;
    animation: none !important;
  }
  #customer-service {
    z-index: 99998 !important;
  }
  .cookie-consent-content h2 {
    font-size: 1em;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .cookie-consent-content p {
    font-size: 0.93em;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .cookie-consent-content button {
    font-size: 0.97em;
    padding: 7px 8vw;
    margin: 6px 4px 0 4px;
    border-radius: 16px;
    box-shadow: 0 1px 8px #ff8edb55;
  }
} 