.om-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,8,6,0.97);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 9997;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  text-align: center;
}

.om-cookie-banner.visible {
  display: flex;
  animation: omCookieIn 0.6s ease forwards;
}

@keyframes omCookieIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.om-cookie-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(232,223,200,0.7);
  letter-spacing: 0.03em;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.om-cookie-text a {
  color: rgba(212,175,55,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.om-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.om-cookie-btn,
.om-cookie-btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  box-sizing: border-box;
  min-width: 130px;
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.om-cookie-btn {
  color: #0a0806;
  background: linear-gradient(135deg, #b8960c, #d4af37, #b8960c);
}

.om-cookie-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: omCookieShimmer 3s ease-in-out infinite;
}

@keyframes omCookieShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.om-cookie-btn-secondary {
  background: transparent;
  color: rgba(212,175,55,0.7);
  border: 1px solid rgba(212,175,55,0.3);
}

.om-cookie-btn-secondary:active {
  border-color: rgba(212,175,55,0.6);
  color: #d4af37;
}
