/* Custom Styles for Apartment Showcase Website */

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

/* Map styles */
.map-container {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#locationMap {
  height: 400px;
  width: 100%;
}

.custom-fire-station-marker,
.custom-landmark-marker {
  border: none !important;
  background: transparent !important;
}

/* Hero section with background image overlay */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background: #000; /* fallback while progressive bg loads */
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Improve hero text readability over photography */
.hero #heroTitle,
.hero #homeP1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

/* Progressive hero background layer with optimized transitions */
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(8px) brightness(.8);
  transform: scale(1.02);
  opacity: 0;
  transition: filter .6s ease-out, transform 1s ease-out, opacity .5s ease-out;
  will-change: filter, transform, opacity;
  z-index: 0; /* sits beneath overlay (::before) */
}
.hero-bg.loaded {
  filter: blur(0) brightness(1);
  transform: scale(1);
  opacity: 1;
}

/* Serif font style for headings or accents (Joivy serif pairing) */
.serif {
  font-family: "Playfair Display", serif;
}

/* Additional custom spacing or layout tweaks */
#privacy {
  border-top: 1px solid #ddd;
}

/* Language selector with flags */
#language-select {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  min-width: 100px;
}

#language-select option {
  font-family: system-ui, -apple-system, sans-serif;
  padding: 0.375rem 0.75rem;
}

/* Ensure flag emojis render properly */
#language-select, #language-select option {
  font-variant-emoji: emoji;
}

/* ========================= */
/* Image Layout Improvements */
/* ========================= */

/* Two-image rows (apartments, design, location) */
.equal-media-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
  aspect-ratio: 16 / 10; /* enforce consistent window */
}

/* Generic progressive image fade / blur-up with improved performance */
img.lazy-image {
  opacity: 0;
  filter: blur(5px);
  transition: opacity .4s ease-out, filter .6s ease-out;
  background: #f0f0f0; /* Lighter placeholder backdrop */
  will-change: opacity, filter;
}

img.lazy-image.loaded {
  opacity: 1;
  filter: blur(0);
  background: transparent;
}

/* Immediate loading for critical images */
img[loading="eager"] {
  opacity: 1;
  filter: none;
  transition: none;
}

/* Optimized aspect ratios for different image types */
.apartment-type-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.equal-media-row img {
  aspect-ratio: 3/2;
}

@media (min-width: 1200px) {
  .equal-media-row > [class^="col"] {
    height: 340px; /* uniform visual band on large screens */
  }
}

/* Gallery grid using modern CSS grid for smooth rhythm */
.gallery-grid {
  --gallery-min: 180px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--gallery-min), 1fr));
  gap: 0.75rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3; /* consistent tile shape */
  overflow: hidden;
  border-radius: 0.65rem;
  background: #f5f5f5;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img {
  transform: scale(1.04);
}

/* Slightly larger tiles on wider viewports for stronger visual rhythm */
@media (min-width: 768px) {
  .gallery-grid { --gallery-min: 220px; }
}
@media (min-width: 1400px) {
  .gallery-grid { --gallery-min: 260px; }
}

/* Reduce vertical stacking gaps above & below gallery for cohesion */
#gallery .container > p { margin-bottom: 1rem; }

/* ========================= */
/* Carousel & Lightbox       */
/* ========================= */

#wfsGalleryCarousel .carousel-item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
#wfsGalleryCarousel img {
  object-fit: cover;
  height: 100%;
}
#wfsGalleryCarousel .carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* Lightbox overlay */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050; /* above navbar */
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  text-align: center;
  color: #fff;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.3;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  padding: 0.65rem 0.9rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: background 0.2s ease;
}
.lightbox-close { top: -2.8rem; right: 0; font-size: 2rem; }
.lightbox-prev { top: 50%; left: -3.2rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: -3.2rem; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(0,0,0,0.8); }

@media (max-width: 768px) {
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-close { top: 0.25rem; right: 0.25rem; }
  .lightbox-inner img { max-height: 60vh; }
}

@media (pointer: coarse) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next { padding: 0.9rem 1.1rem; }
  .lightbox-close { font-size: 2.2rem; }
}

/* ========================= */
/* Apartments Section        */
/* ========================= */

.apartment-types .apartment-type-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
.apartment-types .apartment-type-card:hover,
.apartment-types .apartment-type-card:focus-within {
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.card-jds {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(1, 89, 98, 0.15);
  box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-jds:hover,
.card-jds:focus-within {
  box-shadow: 0 18px 35px -18px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}
.card-jds .position-relative {
  min-height: 220px;
}
.card-jds img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-jds .p-3 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.card-jds .p-3 a {
  margin-top: auto;
}

.apt-overlay-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(1, 89, 98, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.apt-overlay-badge svg {
  color: currentColor;
}

.btn-outline-jds {
  --jds-color: #015962;
  border-color: var(--jds-color);
  color: var(--jds-color);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-outline-jds:hover,
.btn-outline-jds:focus {
  background: var(--jds-color);
  color: #fff;
  border-color: var(--jds-color);
}

.amenity-list { list-style: none; padding-left: 0; margin: 0; }
.amenity-list li { position: relative; padding-left: 1.4rem; margin-bottom: .4rem; font-size: 0.95rem; }
.amenity-list li:before { content: '\2713'; position: absolute; left: 0; top: 0; color: #0d6efd; font-weight: 600; }

.amenity-list.columns-2 { columns: 2; column-gap: 1.5rem; }
@media (max-width: 600px) { .amenity-list.columns-2 { columns: 1; } }

/* Chip variant */
.chip-list { columns: unset !important; }
.chip-list .amenity-chip { 
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(145deg,#ffffff,#f3f6f9);
  border: 1px solid #e3e8ec;
  border-radius: 2rem;
  padding: .45rem .85rem;
  margin: .3rem .4rem .3rem 0;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.2;
  transition: background .25s ease, box-shadow .25s ease, transform .2s ease;
}
.chip-list .amenity-chip .amenity-ico { width: 1rem; height: 1rem; color: #198754; flex-shrink: 0; }
.chip-list .amenity-chip:hover { background: #fff; box-shadow: 0 4px 10px -2px rgba(0,0,0,0.08); transform: translateY(-2px); }
.chip-list .amenity-chip span { white-space: nowrap; }
@media (max-width: 480px) { .chip-list .amenity-chip span { white-space: normal; } }

#apartmentsFAQWrapper .accordion-button:not(.collapsed) { background: #f5f8fa; }
#apartmentsFAQWrapper .accordion-button { font-size: 0.95rem; }
#apartmentsFAQWrapper .accordion-body { background: #fff; }

.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }

/* Hidden SVG sprite container */
.svg-sprite { position:absolute; width:0; height:0; overflow:hidden; }

/* Navbar logo - halved from doubled size */
.logo-img { height: 75px; width: auto; max-width: 180px; object-fit: contain; }
@media (max-width: 576px) { .logo-img { height: 34px; } }

/* Enhanced sticky navbar with doubled size */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.08);
  background-color: rgb(1, 89, 98) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Increased navbar container padding */
.navbar .container {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

/* Larger nav links to match doubled navbar */
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  color: white !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #FFD447 !important;
}

/* Adjust button sizes in navbar */
.navbar .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Language selector adjustments */
.navbar #language-select {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

/* Adjust main content to account for smaller fixed navbar */
body {
  padding-top: 120px; /* Account for 50% increased navbar height */
}

/* Hero section adjustments for fixed navbar */
.hero {
  margin-top: -120px;
  padding-top: 120px;
}

/* Navbar toggler for mobile - normal size */
.navbar-toggler {
  padding: 0.5rem;
  font-size: 1.25rem;
  border-color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar brand text color */
.navbar-brand {
  color: white !important;
}

/* ========================= */
/* New Sections Styling     */
/* ========================= */

/* Heritage highlights */
.heritage-highlight {
  border-left: 4px solid #3D6F58;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.heritage-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Service cards */
.service-card {
  border-left: 4px solid #FFD447;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-item {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.service-item:hover {
  border-color: #3D6F58;
  box-shadow: 0 2px 8px rgba(61, 111, 88, 0.1);
}

/* Attraction cards */
.attraction-card {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.attraction-card:hover {
  border-color: #FFD447;
  background-color: #fffef7 !important;
  transform: translateY(-1px);
}

/* Testimonial cards */
.testimonial-card {
  border-left: 4px solid #3D6F58;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stars {
  font-size: 1.2rem;
}

/* Contact info styling */
.contact-info a {
  color: #3D6F58;
  text-decoration: none;
}
.contact-info a:hover {
  color: #36634F;
  text-decoration: underline;
}

/* Apartment showcase styling */
.apartment-showcase-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.apartment-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.apartment-showcase-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.apartment-showcase-card:hover img {
  transform: scale(1.02);
}

/* Address card styling */
.address-card .card {
  background: linear-gradient(135deg, rgba(248,249,250,0.9) 0%, rgba(255,255,255,0.95) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-card .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.address-icon-wrapper {
  background: linear-gradient(135deg, #c4a962 0%, #d4b973 100%);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(196, 169, 98, 0.3);
  transition: transform 0.3s ease;
}

.address-card:hover .address-icon-wrapper {
  transform: scale(1.1);
}

.address-card address {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.address-card .address-description {
  line-height: 1.6;
}

.address-card .btn {
  border-color: #c4a962;
  color: #c4a962;
  transition: all 0.3s ease;
}

.address-card .btn:hover {
  background-color: #c4a962;
  border-color: #c4a962;
  color: white;
}

/* Contact section styling */
.contact-card .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.contact-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.contact-icon-wrapper {
  background: linear-gradient(135deg, #c4a962 0%, #d4b973 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(196, 169, 98, 0.3);
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-email, .contact-phone {
  color: #c4a962;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-email:hover, .contact-phone:hover {
  color: #b8955a;
  text-decoration: underline;
}

.checkout-time {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c4a962;
  border: 2px solid #c4a962;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
  min-width: 120px;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  padding: 1rem;
  border-top: 3px solid #c4a962;
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cookie-buttons .btn {
  white-space: nowrap;
  font-size: 0.8rem;
  min-width: 120px;
}

.cookie-buttons .btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.cookie-buttons .btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Cookie Policy Section */
#cookies {
  border-top: 0;
}

.cookie-section {
  background: #f7f3ed;
}
.cookie-section-bg {
  position: absolute;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(196, 169, 98, 0.18));
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  filter: blur(30px);
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .cookie-section-bg {
    width: 420px;
    height: 420px;
    bottom: -120px;
  }
}

#cookies h3 {
  color: #c4a962;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#cookies h4 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.cookie-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(196, 169, 98, 0.25);
  box-shadow: 0 30px 60px -35px rgba(15, 23, 42, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 235, 0.95));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cookie-card:hover,
.cookie-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 35px 70px -35px rgba(15, 23, 42, 0.45);
}
.cookie-card--frosted {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.cookie-card--summary {
  background: linear-gradient(135deg, #ffffff, #faf4ec);
}
.cookie-card--summary .card-body {
  padding: 2.25rem;
}
.cookie-card--surface {
  background: #fff;
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.04);
}
.cookie-card .card-body {
  padding: 2rem;
}

.cookie-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.cookie-status-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-status-tile {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.cookie-status-chip {
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chip-on {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}
.chip-choice {
  background: rgba(255, 193, 7, 0.15);
  color: #b88600;
}
.chip-off {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.cookie-summary-grid .border {
  border-color: rgba(196, 169, 98, 0.25) !important;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cookie-action-bar .btn {
  min-width: 190px;
}

.cookie-types-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}
.cookie-types-grid > [class*="col-"] {
  scroll-snap-align: start;
  min-width: 280px;
}
@media (min-width: 768px) {
  .cookie-types-grid {
    flex-wrap: wrap;
    overflow: visible;
  }
  .cookie-types-grid > [class*="col-"] {
    min-width: unset;
  }
}

.cookie-types .cookie-type-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.4);
}

.cookie-card--surface .accordion-item {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
}
.cookie-card--surface .accordion-item:last-child {
  margin-bottom: 0;
}
.cookie-card--surface .accordion-button {
  padding: 1.15rem 1.25rem;
}

.cookie-card--surface .accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.cookie-card--surface #cookieLifecycleCard,
#cookieLifecycleCard.cookie-card {
  border: none;
}

/* Show cookie banner */
.cookie-banner.show {
  display: block !important;
}

/* Hide cookie banner */
.cookie-banner.hide {
  display: none !important;
}

/* Privacy & Cookie UX refresh */
.policy-quick-link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem 1.35rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 600;
  color: #1f1f1f;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 120px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.policy-quick-link::after {
  content: "\2197";
  font-size: 1.1rem;
  color: #c4a962;
}
button.policy-quick-link {
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.policy-quick-link span {
  flex: 1;
}
.policy-quick-link:hover,
.policy-quick-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: #c4a962;
  color: #1f1f1f;
  text-decoration: none;
}

.policy-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.06);
}

.cookie-type-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.85rem;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.cookie-type-card h4 {
  color: #1f1f1f;
}

.cookie-accordion .accordion-button {
  font-weight: 600;
  background-color: #fff;
}
.cookie-accordion .accordion-button:not(.collapsed) {
  color: #1f1f1f;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.cookie-accordion .accordion-body {
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .policy-card {
    padding: 1.5rem;
  }
  .policy-quick-link {
    min-height: unset;
  }
}

@media (min-width: 992px) {
  #cookies .sticky-lg-top {
    top: 2rem;
  }
}

