/* JOIA Cookies Styles - Glass, Grid/Flex, Microinteractions, Luxury Responsive */
.joia-cookies-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(26,26,26,0.85);
  color: #fff;
  padding: 1.2rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  box-shadow: 0 2px 24px #e6a06a33, 0 1.5px 8px rgba(0,0,0,0.10);
  border-radius: 1.2rem 1.2rem 0 0;
  font-family: 'InterVariable', 'Inter', 'Segoe UI', Arial, sans-serif;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid #b8733340;
  gap: 1.2rem;
  animation: cookiesBarIn 0.7s cubic-bezier(.7,0,.3,1);
}
@keyframes cookiesBarIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.joia-cookies-bar .joia-cookies-message {
  flex: 1;
  margin-right: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.joia-cookies-bar .joia-cookies-btn {
  background: linear-gradient(90deg,#b87333 60%,#e6a06a 100%);
  color: #fff;
  border: none;
  border-radius: 0.7em;
  padding: 0.7em 1.4em;
  font-size: 1.05rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 1.5px 8px #b8733322;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  font-variation-settings: 'wght' 600;
}
.joia-cookies-bar .joia-cookies-btn:hover {
  background: linear-gradient(90deg,#e6a06a 60%,#b87333 100%);
  box-shadow: 0 4px 24px #e6a06a33;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .joia-cookies-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem 0.7rem;
    font-size: 0.97rem;
    border-radius: 0.7rem 0.7rem 0 0;
    gap: 0.7rem;
  }
  .joia-cookies-bar .joia-cookies-message {
    margin-right: 0;
    font-size: 0.97rem;
  }
  .joia-cookies-bar .joia-cookies-btn {
    width: 100%;
    padding: 0.8em 0;
    font-size: 1.07rem;
  }
}
/* JOIA Cookies Banner Styles */
.joia-cookies-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0b0b0bcc;
  color: #f3f3f3;
  border: 2px solid #b87333;
  border-radius: 1.2rem;
  padding: 1.2rem 2rem;
  z-index: 9999;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.joia-cookies-banner button {
  background: #b87333;
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}

.joia-cookies-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joia-cookies-modal-content {
  background: #181818;
  color: #f3f3f3;
  border-radius: 1.2rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  min-width: 320px;
  max-width: 90vw;
}
.joia-cookies-modal-content h2 {
  color: #b87333;
  margin-top: 0;
}
.joia-cookies-modal-content button[type="submit"] {
  background: #b87333;
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1.2em;
}
