/* Footer (Roseline Flowers) */

.rf-footer {
  background: radial-gradient(circle at top left, #f7eff3 0, #f1e8ec 38%, #eceff0 80%, #e6ece6 100%);
  border-top: 1px solid rgba(185, 159, 170, 0.35);
  color: #3b2d33;
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}

.rf-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
}

.rf-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.rf-footer__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe8f0 0, #f5cedd 35%, #e9b7c9 65%, #caa5b4 100%);
  box-shadow: 0 6px 18px rgba(119, 88, 104, 0.45);
  position: relative;
}

.rf-footer__brand-mark::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.rf-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.rf-footer__brand-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rf-footer__brand-tagline {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #6b555f;
}

.rf-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.rf-footer__heading {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5f6a;
  margin: 0 0 0.75rem;
}

.rf-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rf-footer__list a {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #43333a;
  text-decoration: none;
  position: relative;
  padding-block: 0.1rem;
  padding-inline: 0.1rem;
  border-radius: 0.25rem;
  transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.rf-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b58a9b, #86a58b);
  transition: width 160ms ease;
}

.rf-footer__list a:hover,
.rf-footer__list a:focus-visible {
  color: #2b1f24;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(124, 96, 110, 0.18);
  outline: none;
}

.rf-footer__list a:hover::after,
.rf-footer__list a:focus-visible::after {
  width: 100%;
}

.rf-footer__list a:focus-visible {
  outline: 2px solid #86a58b;
  outline-offset: 2px;
}

.rf-footer__contact-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

.rf-footer__list--contact li {
  font-size: 0.95rem;
  color: #43333a;
}

.rf-footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.rf-footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: #6c5460;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(117, 90, 103, 0.28);
  transition: background-color 150ms ease, color 150ms ease, transform 120ms ease, box-shadow 150ms ease;
}

.rf-footer__social-link:hover,
.rf-footer__social-link:focus-visible {
  background: linear-gradient(135deg, #b58a9b, #86a58b);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(117, 90, 103, 0.4);
  outline: none;
}

.rf-footer__social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.rf-footer__bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 0;
  border-top: 1px solid rgba(179, 154, 164, 0.35);
}

.rf-footer__copy {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: #6b555f;
}

/* Cookie banner */

.rf-cookie {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  max-width: 1120px;
  margin-inline: auto;
  pointer-events: none;
}

.rf-cookie__inner {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(41, 29, 35, 0.35);
  border: 1px solid rgba(183, 157, 168, 0.55);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
}

.rf-cookie--visible .rf-cookie__inner {
  opacity: 1;
  transform: translateY(0);
}

.rf-cookie--hidden .rf-cookie__inner {
  opacity: 0;
  transform: translateY(18px);
}

.rf-cookie__title {
  margin: 0 0 0.25rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #3b2d33;
}

.rf-cookie__desc {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: #57454c;
}

.rf-cookie__link {
  font-size: 0.88rem;
  color: #6c8f73;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rf-cookie__link:hover,
.rf-cookie__link:focus-visible {
  color: #54725a;
  outline: none;
}

.rf-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rf-cookie__btn {
  flex: 1 1 130px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.1rem;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 120ms ease;
}

.rf-cookie__btn--primary {
  background: linear-gradient(135deg, #b58a9b, #86a58b);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(107, 84, 97, 0.55);
}

.rf-cookie__btn--primary:hover,
.rf-cookie__btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(88, 67, 79, 0.65);
  outline: none;
}

.rf-cookie__btn--secondary {
  background: #f6f0f3;
  color: #4a3740;
  border-color: rgba(175, 148, 159, 0.7);
}

.rf-cookie__btn--secondary:hover,
.rf-cookie__btn--secondary:focus-visible {
  background: #fdfbfc;
  box-shadow: 0 6px 16px rgba(136, 107, 120, 0.45);
  outline: none;
}

.rf-cookie__btn:focus-visible {
  outline: 2px solid #86a58b;
  outline-offset: 2px;
}

@media (min-width: 720px) {
  .rf-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.35rem;
  }

  .rf-cookie__text {
    max-width: 65%;
  }

  .rf-cookie__actions {
    justify-content: flex-end;
    min-width: 230px;
  }
}

@media (max-width: 768px) {
  .rf-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }
}

@media (max-width: 520px) {
  .rf-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rf-footer__brand {
    align-items: flex-start;
  }

  .rf-cookie {
    inset-inline: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-footer *,
  .rf-cookie * {
    transition: none !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
