/*
Theme Name: Create a destination Theme
Theme URI: https://createadestination.com
Author: Create a destination
Author URI: https://createadestination.com
Description: Premium, high-converting destination theme inspired by Båstad.com and Visit Stockholm. Features a modern dark navy header with live "ÖPPET 🕒" CTA button, immersive hero banners, and seamless integration with Destination Opening Hours.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: destination-suite-theme
*/

:root {
  --dest-navy: #0a2540;
  --dest-dark: #07192c;
  --dest-gold: #b89a5b;
  --dest-gold-hover: #9e8248;
  --dest-green: #2e7d32;
  --dest-bg: #f8fafc;
  --dest-text: #1e293b;
  --dest-text-muted: #64748b;
  --dest-radius-lg: 20px;
  --dest-radius-pill: 9999px;
  --dest-container: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--dest-bg);
  color: var(--dest-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.dest-container {
  max-width: var(--dest-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ==========================================
   HEADER & NAVIGATION (Båstad / Stockholm style)
   ========================================== */
.dest-header {
  background-color: var(--dest-navy);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dest-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.dest-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--dest-gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.dest-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.dest-nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.dest-nav-link:hover, .dest-nav-link.active {
  color: #ffffff;
}

.dest-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dest-gold);
  transition: width 0.25s ease;
}

.dest-nav-link:hover::after, .dest-nav-link.active::after {
  width: 100%;
}

.dest-nav-link--mobile-only {
  display: none;
}

.dest-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Hamburger Toggle */
.dest-mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dest-mobile-toggle:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.dest-hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.dest-mobile-toggle.is-active .dest-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dest-mobile-toggle.is-active .dest-hamburger-bar:nth-child(2) {
  opacity: 0;
}

.dest-mobile-toggle.is-active .dest-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Standout "Min lista" Button in Header */
.dest-btn-mylist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--dest-radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dest-btn-mylist:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cad-list-count {
  display: none;
  background: var(--dest-gold);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  line-height: 18px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Floating Bookmark Button on Cards */
.cad-bookmark-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 10;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}

.cad-bookmark-btn:hover {
  transform: scale(1.15);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.cad-bookmark-btn.is-bookmarked {
  background: var(--dest-gold);
  color: #ffffff;
}

/* Single Page Button Style Overrides */
.cad-bookmark-btn.dev-single-action-btn,
.cad-bookmark-btn.dev-sidebar-bookmark-btn {
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  padding: 9px 18px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.cad-bookmark-btn.dev-sidebar-bookmark-btn {
  border-radius: 12px !important;
  width: 100% !important;
  padding: 12px 16px !important;
  box-sizing: border-box !important;
}

.cad-bookmark-btn.dev-single-action-btn:hover,
.cad-bookmark-btn.dev-sidebar-bookmark-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.cad-bookmark-btn.is-bookmarked .cad-bm-icon::after {
  content: "";
}

.cad-bookmark-btn.cad-pop {
  transform: scale(1.35) rotate(-10deg);
}

/* Standout "ÖPPET 🕒" CTA Button in Header */
.dest-btn-oppet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--dest-radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dest-btn-oppet:hover {
  background: #ffffff;
  color: var(--dest-navy) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.dest-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
  animation: dest-pulse 2s infinite;
}

@keyframes dest-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Min Lista Action Bar */
.cad-my-list-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid var(--dest-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  gap: 14px;
}

.cad-badge-count {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dest-navy);
}

.cad-list-btns-col {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cad-action-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cad-action-btn:hover {
  background: #ffffff;
  border-color: var(--dest-gold);
  color: var(--dest-gold);
}

.cad-btn-wa {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.cad-btn-wa:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #ffffff;
}

.cad-btn-clear {
  color: #c63e3e;
  border-color: #fecaca;
  background: #fef2f2;
}

.cad-btn-clear:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #b91c1c;
}

/* Remove button on Min lista cards */
.cad-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cad-remove-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* Map Heart Pin */
.cad-map-heart-pin {
  background: var(--dest-navy);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--dest-gold);
  white-space: nowrap;
  cursor: pointer;
}

/* Mobile & Tablet Responsiveness for Header (includes iPad / iPad Pro) */
@media (max-width: 1080px) {
  .dest-container {
    padding: 0 16px;
  }

  .dest-header-inner {
    height: 64px;
  }

  .dest-logo {
    font-size: 1.05rem;
    gap: 6px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .dest-logo-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .dest-header-actions {
    gap: 6px;
  }

  .dest-btn-mylist {
    padding: 6px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .dest-btn-oppet {
    padding: 6px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .dest-mobile-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .dest-nav-link--mobile-only {
    display: block;
  }

  .dest-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dest-navy);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: none;
  }

  .dest-nav.is-open {
    display: flex;
    animation: destNavFadeDown 0.25s ease forwards;
  }

  @keyframes destNavFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .dest-nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9375rem;
  }

  .dest-nav-link:last-child {
    border-bottom: none;
  }

  .dest-nav-link::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .dest-container {
    padding: 0 12px;
  }

  .dest-logo {
    font-size: 1rem;
    font-weight: 800;
  }

  .dest-header-actions {
    gap: 8px;
  }

  /* Icon-only mode on mobile */
  .dest-mylist-text, .dest-oppet-text {
    display: none;
  }

  .dest-btn-mylist {
    padding: 0 10px;
    height: 36px;
    font-size: 15px;
    border-radius: var(--dest-radius-pill);
    gap: 5px;
  }

  .dest-btn-oppet {
    padding: 0 10px;
    height: 36px;
    border-radius: var(--dest-radius-pill);
    gap: 6px;
  }

  .dest-btn-oppet svg {
    display: block;
    width: 14px;
    height: 14px;
  }

  .dest-mobile-toggle {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================
   HERO BANNER (Full-Bleed Coastal Imagery)
   ========================================== */
.dest-hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 100px 0 120px;
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 44, 0.6) 0%, rgba(7, 25, 44, 0.85) 100%);
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.dest-hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dest-gold);
  margin-bottom: 16px;
}

.dest-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 22px 0;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dest-hero-lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 36px 0;
  max-width: 680px;
}

.dest-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dest-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--dest-gold);
  color: #ffffff;
  border-radius: var(--dest-radius-pill);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(184, 154, 91, 0.4);
  transition: all 0.25s ease;
}

.dest-btn-primary:hover {
  background: var(--dest-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 154, 91, 0.55);
}

.dest-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--dest-radius-pill);
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.dest-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================
   FEATURED CATEGORY TILES (Båstad style)
   ========================================== */
.dest-section {
  padding: 80px 0;
}

.dest-section-header {
  text-align: center;
  margin-bottom: 45px;
}

.dest-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dest-gold);
  display: block;
  margin-bottom: 8px;
}

.dest-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dest-navy);
  margin: 0;
}

.dest-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.dest-cat-card {
  position: relative;
  border-radius: var(--dest-radius-lg);
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.dest-cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-cat-card:hover .dest-cat-img {
  transform: scale(1.08);
}

.dest-cat-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(10, 37, 64, 0.6) 45%, rgba(10, 37, 64, 0.95) 100%);
}

.dest-cat-content {
  position: relative;
  z-index: 2;
}

.dest-cat-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: var(--dest-radius-pill);
  margin-bottom: 12px;
}

.dest-cat-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.dest-cat-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px 0;
  line-height: 1.45;
}

.dest-cat-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dest-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================
   PAGE TEMPLATE & FOOTER
   ========================================== */
.dest-page-content {
  padding: 50px 0 80px;
}

.dest-footer {
  background: var(--dest-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 35px;
  margin-top: 60px;
}

.dest-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .dest-footer-grid {
    grid-template-columns: 1fr;
  }
}

.dest-footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dest-footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dest-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dest-footer-links li {
  margin-bottom: 10px;
}

.dest-footer-links a:hover {
  color: #ffffff;
}

.dest-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.875rem;
}

/* ==========================================
   OPENING HOURS & LIVE STATUS STYLES (THEME)
   ========================================== */
.doh-badge-wrapper {
  display: inline-flex;
  align-items: center;
}

.doh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.doh-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* Open State */
.doh-badge.doh-open,
.doh-badge.doh-open--status,
.doh-badge--open {
  background-color: #ecfdf5 !important;
  color: #065f46 !important;
  border: 1px solid #a7f3d0 !important;
}
.doh-badge.doh-open .doh-badge-dot,
.doh-badge.doh-open--status .doh-badge-dot,
.doh-badge--open .doh-badge-dot {
  background-color: #10b981 !important;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
  animation: doh-pulse 2s infinite;
}

/* Closed State */
.doh-badge.doh-closed,
.doh-badge.doh-closed--status,
.doh-badge--closed {
  background-color: #fef2f2 !important;
  color: #991b1b !important;
  border: 1px solid #fecaca !important;
}
.doh-badge.doh-closed .doh-badge-dot,
.doh-badge.doh-closed--status .doh-badge-dot,
.doh-badge--closed .doh-badge-dot {
  background-color: #ef4444 !important;
}

/* Seasonal State */
.doh-badge.doh-seasonal,
.doh-badge--season {
  background-color: #fffbeb !important;
  color: #92400e !important;
  border: 1px solid #fde68a !important;
}
.doh-badge.doh-seasonal .doh-badge-dot,
.doh-badge--season .doh-badge-dot {
  background-color: #f59e0b !important;
}

/* Table styling */
.doh-hours-widget {
  width: 100%;
}

.doh-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  margin: 0;
}

.doh-table-row {
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}

.doh-table-row:last-child {
  border-bottom: none;
}

.doh-table-row td {
  padding: 10px 12px;
  vertical-align: middle;
  border: none;
}

.doh-day-name {
  font-weight: 600;
  color: #334155;
  text-align: left;
}

.doh-day-hours {
  text-align: right;
  font-weight: 700;
  color: #0a2540;
  white-space: nowrap;
}

/* Highlight today's row */
.doh-table-row.doh-is-today {
  background-color: #f8fafc;
  border-radius: 10px;
}

.doh-table-row.doh-is-today .doh-day-name {
  font-weight: 800;
  color: #0a2540;
}

.doh-table-row.doh-is-today .doh-day-hours {
  font-weight: 800;
  color: #b89a5b;
}

.doh-today-tag {
  background: #b89a5b;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.2;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

.doh-table-row.doh-is-closed .doh-day-hours {
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================
   SINGLE PLACE / COMPANY 2-COLUMN LAYOUT
   ========================================== */
.dev-single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .dev-single-grid {
    grid-template-columns: minmax(0, 1fr) 380px !important;
    gap: 48px !important;
  }

  .dev-single-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
  }
}

/* ==========================================
   SPOTLIGHT GUIDE HERO BANNER (Se & Göra / Categories)
   ========================================== */
.dest-guide-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--dest-radius-lg, 20px);
  margin-bottom: 32px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dest-oppettider-custom-content .dest-guide-hero-banner[data-category] {
  display: none;
}

.dest-guide-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-guide-hero-banner:hover .dest-guide-hero-bg {
  transform: scale(1.03);
}

.dest-guide-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 44, 0.3) 0%, rgba(7, 25, 44, 0.88) 100%);
}

.dest-guide-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  max-width: 780px;
}

.dest-guide-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fedf9e;
  border: 1px solid rgba(254, 223, 158, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dest-guide-hero-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.dest-guide-hero-lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0 0 20px 0;
  max-width: 640px;
}

.dest-guide-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dest-gold, #b89a5b);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.dest-guide-hero-btn:hover {
  background: var(--dest-gold-hover, #9e8248);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

/* ==========================================
   INLINE INTERACTIVE PLACE CARD (Inside Guides)
   ========================================== */
.dest-inline-place-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin: 28px 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dest-inline-place-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}

@media (min-width: 640px) {
  .dest-inline-place-card {
    flex-direction: row;
    align-items: stretch;
  }
}

.dest-inline-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .dest-inline-card-media {
    width: 240px;
    height: auto;
    min-height: 180px;
  }
}

.dest-inline-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-inline-place-card:hover .dest-inline-card-media img {
  transform: scale(1.05);
}

.dest-inline-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.dest-inline-card-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dest-inline-town {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.dest-inline-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a2540;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.dest-inline-title a {
  color: inherit;
  text-decoration: none;
}

.dest-inline-title a:hover {
  color: var(--dest-gold, #b89a5b);
}

.dest-inline-address {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 16px 0;
}

.dest-inline-address a {
  color: #64748b;
  text-decoration: none;
}

.dest-inline-address a:hover {
  text-decoration: underline;
}

.dest-inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.dest-inline-btn-view {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dest-gold, #b89a5b);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.dest-inline-btn-view:hover {
  color: var(--dest-gold-hover, #9e8248);
  gap: 8px;
}

.dest-inline-bookmark-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-inline-bookmark-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0a2540;
}

.dest-inline-bookmark-btn.bookmarked {
  background: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

/* Event specific inline card styles */
.dest-event-inline-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fedf9e;
  border: 1px solid rgba(254, 223, 158, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dest-inline-event-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f1f5f9;
  color: #0a2540;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.dest-inline-price-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 3px 8px;
  border-radius: 6px;
}

.dest-inline-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--dest-gold, #b89a5b);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dest-inline-ticket-btn:hover {
  background: var(--dest-gold-hover, #9e8248);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   FULL-BLEED PAGE & GUIDE HERO BANNER
   ========================================== */
.dest-page-hero {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 50px;
  box-shadow: inset 0 -40px 40px -20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .dest-page-hero {
    min-height: 420px;
    padding: 100px 0 65px;
  }
}

.dest-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 44, 0.45) 0%, rgba(7, 25, 44, 0.88) 100%);
}

.dest-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  color: #ffffff;
}

.dest-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fedf9e;
  border: 1px solid rgba(254, 223, 158, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dest-page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.dest-page-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
  font-weight: 400;
}

.doh-card-badge.doh-badge--event {
  background: rgba(184, 154, 91, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}


