@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/* f360 local brand fonts */
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/baloo-2-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/baloo-2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* end f360 local brand fonts */

:root {
  --primary: #06b6d4;
  --primary-hover: #0891b2;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --red: #ef4444;
  --orange: #f97316;
  --green: #22c55e;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --font-main: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-script: "Segoe Script", "Brush Script MT", cursive;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --page-bg: #f3f4f6;
  font-family: var(--font-main);
  background-color: #f3f4f6;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1340px;
  z-index: 100;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(17, 57, 104, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
  height: 76px;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.topbar.scrolled .topbar-inner {
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  height: 54px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.01);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 16px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  white-space: nowrap;
}

.topbar-nav-link {
  color: var(--dark-light);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.topbar-nav-link:hover {
  color: #08b9d2;
}

.topbar-nav-link.new::after {
  content: 'AI Rehber';
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #d8fbff;
  color: #0695b3;
  font-size: 10px;
  font-weight: 800;
}

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

.topbar-round-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f1f6ff;
  color: #071e4d;
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.topbar-round-btn:hover {
  background: #e5efff;
  transform: translateY(-1px);
}

.topbar-login-btn {
  height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, #10c7d4, #0a9ed3);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(5, 169, 204, 0.23);
  cursor: pointer;
  transition: var(--transition);
}

.topbar-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(5, 169, 204, 0.35);
}

.btn-login {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.btn-login:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.hero {
  position: relative;
  height: 780px;
  background-image: url('/theme/fethiye/hero_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.1) 50%, rgba(243, 244, 246, 1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-text {
  max-width: 600px;
  color: var(--white);
  margin-top: -190px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 8px;
  display: block;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.ai-icon-badge {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.weather {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 24px;
  width: 260px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: -190px;
}

.weather-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.weather-top strong {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.weather-top small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.2;
}

.w-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 13px;
  font-weight: 700;
}

.w-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-light);
}

.w-row span i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.w-row b {
  color: var(--dark);
}

.w-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.w-link:hover {
  color: var(--primary-hover);
}

.search-container {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  background-color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 30;
}

.search-top {
  display: flex;
  align-items: center;
  background-color: var(--gray-light);
  border-radius: 20px;
  padding: 8px 12px 8px 24px;
  margin-bottom: 20px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.search-input-wrapper i {
  color: var(--gray);
  font-size: 16px;
}

.search-input-wrapper input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--dark);
}

.search-divider {
  width: 1px;
  height: 28px;
  background-color: #cbd5e1;
  margin: 0 20px;
}

.search-location-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
}

.search-location-wrapper i {
  color: var(--gray);
}

.search-location-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-light);
}

.btn-search-trigger {
  background-color: var(--primary);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.btn-search-trigger:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.search-categories {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.category-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.category-item.plajlar .category-icon-box { background-color: #e0f2fe; color: #0284c7; }
.category-item.restoranlar .category-icon-box { background-color: #fee2e2; color: #dc2626; }
.category-item.oteller .category-icon-box { background-color: #f3e8ff; color: #7c3aed; }
.category-item.rotalar .category-icon-box { background-color: #dcfce7; color: #16a34a; }
.category-item.aktiviteler .category-icon-box { background-color: #e0f7fa; color: #00acc1; }
.category-item.etkinlikler .category-icon-box { background-color: #ffe4e6; color: #e11d48; }
.category-item.isletmeler .category-icon-box { background-color: #fef3c7; color: #d97706; }
.category-item.al-rehber .category-icon-box { background-color: #ede9fe; color: #6d28d9; }

.category-item:hover {
  color: var(--dark);
  transform: translateY(-3px);
}

.category-item:hover .category-icon-box {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section {
  padding: 60px 0;
}

.section-discover {
  padding-top: 75px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.section-subtitle {
  font-size: 14px;
  color: var(--gray);
}

.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-link:hover {
  color: var(--primary-hover);
}

.discover-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.discover-carousel-wrapper {
  position: relative;
}

.discover-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.discover-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.discover-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.discover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.discover-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--white);
}

.discover-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.discover-card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

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

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  z-index: 10;
}

.carousel-nav-btn:hover {
  background-color: var(--gray-light);
}

.carousel-nav-btn.prev {
  left: -20px;
}

.carousel-nav-btn.next {
  right: -20px;
}

.ai-assistant-card {
  background-color: #0b1528;
  background-image: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-assistant-header {
  z-index: 2;
}

.ai-assistant-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ai-assistant-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 220px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  z-index: 2;
}

.ai-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ai-feature-item i {
  color: var(--primary);
  font-size: 12px;
}

.btn-ai-chat {
  background-color: var(--white);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  z-index: 2;
}

.btn-ai-chat:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.ai-assistant-turtle {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 220px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  transform: rotate(-10deg);
}

.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.businesses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.business-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.business-card-img-wrapper {
  position: relative;
  height: 180px;
}

.business-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.business-tag.restoran { background-color: var(--orange); }
.business-tag.otel { background-color: #3b82f6; }
.business-tag.beach-club { background-color: #10b981; }
.business-tag.dalis { background-color: #06b6d4; }

.business-card-content {
  padding: 20px;
}

.business-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.business-location {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.business-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-light);
}

.business-rating i {
  color: #fbbf24;
}

.business-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-events {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.event {
  display: grid;
  grid-template-columns: 72px 56px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  transition: var(--transition);
}

.event:hover {
  transform: translateY(-2px);
}

.event img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.date {
  width: 56px;
  height: 66px;
  border-radius: 12px;
  background: #edf6ff;
  color: #0b3a78;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.date b {
  display: block;
  font-size: 24px;
}

.event h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.event p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.community-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.community-card-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.community-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

.community-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-user-info {
  display: flex;
  flex-direction: column;
}

.community-username {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.community-time {
  font-size: 10px;
  color: var(--gray);
}

.community-img-wrapper {
  height: 150px;
  overflow: hidden;
}

.community-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.community-card:hover .community-img {
  transform: scale(1.05);
}

.community-card-body {
  padding: 16px;
}

.community-caption {
  font-size: 13px;
  color: var(--dark-light);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.community-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gray-light);
  padding-top: 12px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.community-action {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.community-action:hover {
  color: var(--dark);
}

.community-action.like:hover i {
  color: var(--red);
}

.map-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 24px;
}

.map-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.map-subtitle {
  font-size: 12px;
  color: var(--gray);
}

.map-body {
  flex: 1;
  background-image: url('/theme/fethiye/fethiye_map.png');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 250px;
}

.map-pin {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: float 3s ease-in-out infinite;
}

.map-pin:nth-child(1) { top: 30%; left: 45%; animation-delay: 0s; }
.map-pin:nth-child(2) { top: 55%; left: 35%; animation-delay: 0.5s; }
.map-pin:nth-child(3) { top: 60%; left: 75%; animation-delay: 1s; }
.map-pin:nth-child(4) { top: 40%; left: 20%; animation-delay: 1.5s; }
.map-pin:nth-child(5) { top: 75%; left: 50%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-footer {
  padding: 24px;
  display: flex;
  justify-content: center;
}

.btn-map {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.btn-map:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.3);
}

.stats-bar {
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
}

.stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.stat-happy-users {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--gray-light);
  padding-left: 32px;
}

.user-avatar-group {
  display: flex;
  align-items: center;
}

.user-avatar-group img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}

.user-avatar-group img:first-child {
  margin-left: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.feature {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ai-feature {
  color: var(--white);
  background: url('/theme/fethiye/ai-turtle.png') right 10px bottom 0/200px auto no-repeat, linear-gradient(135deg, #06375e, #0585a8);
}

.feature h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.feature p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.9;
}

.ai-feature p {
  max-width: 220px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  color: #c7fbff;
  font-size: 13px;
  font-weight: 700;
}

.check i {
  font-size: 11px;
}

.route-feature {
  color: var(--white);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.3)), url('/theme/fethiye/hidden.png') center/cover no-repeat;
}

.route-feature .dots {
  position: absolute;
  right: 24px;
  top: 42px;
  width: 120px;
  height: 110px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45%;
  pointer-events: none;
}

.white-btn {
  position: absolute;
  left: 32px;
  bottom: 32px;
  min-height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--dark);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.white-btn:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mail-feature {
  background: #fff3db;
  color: var(--dark);
}

.mail-feature::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 120px;
  height: 70px;
  border: 2px dashed rgba(6, 182, 212, 0.3);
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.mail-feature .mail-form {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  height: 52px;
  border-radius: 30px;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 4px;
  box-shadow: 0 12px 26px rgba(100, 65, 15, 0.08);
}

.mail-feature input {
  border: 0;
  outline: 0;
  padding: 0 16px;
  font-size: 13px;
  background: transparent;
  flex: 1;
  font-family: var(--font-main);
  color: var(--dark);
}

.mail-feature button {
  border: 0;
  border-radius: 30px;
  background: #08bdce;
  color: var(--white);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  height: 100%;
}

.mail-feature button:hover {
  background: var(--primary-hover);
}

.f360-sea-wave {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.f360-sea-hero-wave {
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  height: clamp(92px, 8.8vw, 132px) !important;
  z-index: 22 !important;
  opacity: 0.88 !important;
}

.f360-sea-hero-wave svg {
  width: 200% !important;
  height: 100% !important;
  display: block !important;
  transform: translate3d(-25%, 0, 0) !important;
  will-change: transform !important;
}

.f360-sea-hero-wave .f360-wave-parallax > use {
  animation: f360-hero-wave-drift 18s linear infinite;
  will-change: transform;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(1) {
  animation-duration: 22s;
  animation-delay: -2s;
  opacity: 0.72;
}

.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(2) {
  animation-duration: 18s;
  animation-delay: -5s;
  opacity: 0.78;
}

.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(3) {
  animation-duration: 14s;
  animation-delay: -8s;
  opacity: 0.86;
}

.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(4) {
  animation-duration: 11s;
  animation-delay: -11s;
  opacity: 0.96;
}

@keyframes f360-hero-wave-drift {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

.f360-sea-footer {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  background: #1A5F7A;
  color: white;
  z-index: 20;
}

.f360-sea-footer .f360-sea-wave-footer {
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  overflow: hidden;
  transform: rotate(180deg);
  opacity: 1;
  line-height: 0;
}

.f360-sea-footer .f360-sea-wave-footer svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 112px;
  position: relative;
}

.f360-sea-footer .f360-footer-parallax > use {
  will-change: transform;
  animation: f360-footer-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.f360-sea-footer .f360-footer-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.f360-sea-footer .f360-footer-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.f360-sea-footer .f360-footer-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.f360-sea-footer .f360-footer-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
  fill: var(--page-bg, #f3f4f6) !important;
}

@keyframes f360-footer-move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

.f360-footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(7rem, 9vw, 9rem) 24px 48px;
}

.f360-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1.25fr;
  gap: 32px;
}

.f360-footer-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f360-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.f360-footer-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 30px rgba(6, 182, 212, 0.25);
  font-size: 20px;
  font-weight: 950;
  color: #fff;
}

.f360-footer-block h4, .f360-footer-brand h4 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

.f360-footer-brand h4 {
  font-size: 22px;
}

.f360-footer-block > h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f360-footer-block > h4 span {
  display: inline-block;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: #06b6d4;
}

.f360-footer-block:nth-child(3) > h4 span { background: #2563eb; }
.f360-footer-block:nth-child(4) > h4 span { background: #22c55e; }
.f360-footer-block:nth-child(5) > h4 span { background: #f59e0b; }

.f360-footer-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.f360-footer-block a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.f360-footer-block a span {
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.25s ease;
}

.f360-footer-block a:hover {
  color: #2ECC9A;
  padding-left: 8px;
}

.f360-footer-block a:hover span {
  color: #2ECC9A;
}

.f360-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.f360-footer-socials a {
  width: 44px;
  height: 44px;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.34);
  color: #cbd5e1;
  padding: 0;
}

.f360-footer-socials a:hover {
  padding-left: 0;
  border-color: #06b6d4;
  background: #06b6d4;
  color: #fff;
}

.f360-footer-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f360-footer-socials svg.filled {
  fill: currentColor;
  stroke: none;
}

.f360-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.38);
}

.f360-footer-bottom p {
  margin: 0;
  text-align: left;
  color: rgba(226, 232, 240, 0.70);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .f360-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .f360-footer-social-block { grid-column: span 2; }
  .f360-sea-footer { margin-top: 48px; }
}

@media (max-width: 640px) {
  .f360-sea-hero-wave { bottom: -4px !important; height: 82px !important; opacity: 0.82 !important; }
  .f360-footer-inner { padding: 6.5rem 18px 36px; }
  .f360-footer-grid { grid-template-columns: 1fr; }
  .f360-footer-social-block { grid-column: auto; }
  .f360-footer-bottom p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .f360-sea-hero-wave .f360-wave-parallax > use,
  .f360-sea-footer .f360-footer-parallax > use {
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .weather {
    margin-top: 0;
    position: static;
    width: 100%;
  }
  .discover-grid, .main-grid, .f360-footer-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
  .discover-carousel {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }
  .stat-happy-users {
    border-left: none;
    padding-left: 0;
  }
  .feature {
    height: auto;
    min-height: 280px;
    padding-bottom: 96px;
  }
  .white-btn, .mail-feature .mail-form {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
  .search-container {
    bottom: -75px;
  }
  .section-discover {
    padding-top: 145px;
  }
  .topbar {
    left: 50%;
    transform: translateX(-50%);
    top: 16px;
    border-radius: 14px;
    width: calc(100% - 24px);
  }
  .topbar-inner {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    height: 64px;
  }
  .brand-logo-img {
    height: 44px;
  }
  .topbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
  }
  .topbar-nav {
    display: none;
  }
  .topbar-login-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 40px;
  }
  .search-top {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .search-divider {
    display: none;
  }
  .search-categories {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .discover-carousel {
    grid-template-columns: 1fr;
  }
  .businesses-grid, .community-grid {
    grid-template-columns: 1fr;
  }
}

/* --- New Modules Preview --- */
.section-modules-preview {
  background-color: #f8fafc;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-recommended-route {
  display: flex;
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  color: var(--dark);
  text-decoration: none;
}

.preview-recommended-route:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.route-img-wrapper {
  position: relative;
  width: 350px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
}

.route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-recommended-route:hover .route-img {
  transform: scale(1.05);
}

.route-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.route-info-wrapper {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.route-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.preview-recommended-route:hover .route-title {
  color: var(--primary-hover);
}

.route-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.route-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.route-stops, .route-duration {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-light);
  background-color: var(--gray-light);
  padding: 6px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.route-stops i, .route-duration i {
  color: var(--primary);
}

.route-action-btn {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.preview-recommended-route:hover .route-action-btn {
  background-color: var(--primary);
  transform: scale(1.05);
}

.preview-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.preview-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.preview-card-header.flex-between {
  justify-content: space-between;
}

.flex-align-gap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.preview-icon-box.teal {
  background-color: rgba(20, 184, 166, 0.1);
  color: rgb(13, 148, 136);
}

.preview-icon-box.orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: rgb(234, 88, 12);
}

.preview-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.preview-view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.preview-view-all:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.preview-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.preview-card-body.scrollable-y {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.pazar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--gray-light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.item-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.item-icon-box.cyan {
  background-color: rgba(6, 182, 212, 0.1);
  color: rgb(8, 145, 178);
}

.item-icon-box.blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: rgb(37, 99, 235);
}

.item-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.item-sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

.pazar-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
}

.pazar-badge.status-busy {
  background-color: rgba(239, 68, 68, 0.1);
  color: rgb(220, 38, 38);
}

.item-right {
  text-align: right;
}

.item-price {
  font-weight: 800;
  color: var(--dark);
  font-size: 16px;
}

.item-trend {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.pano-item {
  display: block;
  padding: 16px;
  background-color: var(--gray-light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.pano-item:hover {
  background-color: rgba(6, 182, 212, 0.03);
  border-color: rgba(6, 182, 212, 0.2);
}

.pano-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pano-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pano-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: rgba(99, 102, 241, 0.1);
  color: rgb(79, 70, 229);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.pano-avatar.user-color-2 {
  background-color: rgba(20, 184, 166, 0.1);
  color: rgb(13, 148, 136);
}

.pano-username {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
}

.pano-location {
  display: block;
  font-size: 10px;
  color: var(--gray);
}

.pano-type-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background-color: rgba(99, 102, 241, 0.1);
  color: rgb(79, 70, 229);
}

.pano-item-text {
  font-size: 13px;
  color: var(--dark-light);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .preview-recommended-route {
    flex-direction: column;
  }
  .route-img-wrapper {
    width: 100%;
    height: 220px;
  }
  .preview-modules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* f360 main menu transfer */
.topbar-inner { grid-template-columns: auto minmax(0, 1fr) auto; gap: 24px; }
.topbar-nav { gap: 8px; min-width: 0; }
.topbar-nav-item { position: relative; }
.topbar-nav-link,
.nav-trigger,
.direct-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 14px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.topbar-nav-link i:first-child { font-size: 15px; color: #0891b2; }
.topbar-nav-link .chevron { font-size: 10px; color: #64748b; transition: transform .22s ease; }
.topbar-nav-link:hover,
.nav-dropdown:hover .nav-trigger,
.direct-link:hover { color: #0891b2; background: #f1f5f9; transform: translateY(-1px); }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.emergency-link { color: #fff !important; background: linear-gradient(135deg, #E8734A, #d95f38); box-shadow: 0 12px 22px rgba(232, 115, 74, .22); }
.emergency-link i:first-child { color: #fff; animation: f360-alert-pulse 1.45s ease-in-out infinite; }
.emergency-link:hover { background: linear-gradient(135deg, #f1865e, #dd6742); color: #fff; }
.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: 232px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 52px rgba(15, 23, 42, .14);
  backdrop-filter: blur(14px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}
.nav-dropdown-link:hover { color: #0891b2; background: #f8fafc; padding-left: 14px; }
.nav-dropdown-link i { width: 18px; text-align: center; font-size: 16px; }
.text-cyan { color: #06b6d4; }
.text-blue { color: #2563eb; }
.text-teal { color: #14b8a6; }
.text-orange { color: #fb923c; }
.text-emerald { color: #10b981; }
.text-pink { color: #ec4899; }
.text-indigo { color: #818cf8; }
.text-purple { color: #8b5cf6; }
.topbar-actions { gap: 10px; }
.topbar-round-btn { text-decoration: none; }
@keyframes f360-alert-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: .72; } }
@media (max-width: 1120px) {
  .topbar-inner { gap: 16px; padding: 0 22px; }
  .topbar-nav { gap: 4px; }
  .topbar-nav-link, .nav-trigger, .direct-link { padding: 0 9px; font-size: 12px; }
}
@media (max-width: 900px) { .topbar-nav { display: none; } }
/* end f360 main menu transfer */
/* f360 brand font transfer */
:root {
  --font-main: "Baloo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
body,
button,
input,
textarea,
select,
.topbar,
.brand,
.topbar-nav,
.dropdown-menu,
.mobile-menu,
.hero-content,
.hero-title,
.hero-description,
.search-container,
.category-bar,
.section-header,
.card,
.stats-bar,
main,
footer,
.footer,
.f360-sea-footer {
  font-family: var(--font-main) !important;
}
.hero-script {
  font-family: var(--font-script) !important;
}
/* end f360 brand font transfer */
/* f360 top menu typography */
.topbar-nav .topbar-nav-link,
.topbar-nav .nav-trigger,
.topbar-nav .direct-link,
.topbar-nav .emergency-link {
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0;
}
.topbar-nav .topbar-nav-link > span,
.topbar-nav .nav-trigger > span,
.topbar-nav .direct-link > span,
.topbar-nav .emergency-link > span {
  font-weight: 400 !important;
}
.nav-dropdown-link {
  font-size: 14px !important;
  font-weight: 400 !important;
}
.nav-dropdown-link > span {
  font-weight: 400 !important;
}
@media (max-width: 1120px) {
  .topbar-nav .topbar-nav-link,
  .topbar-nav .nav-trigger,
  .topbar-nav .direct-link,
  .topbar-nav .emergency-link {
    font-size: 14px !important;
  }
}
/* end f360 top menu typography */
/* f360 requested modules update */
.section-modules-preview {
  padding: 46px 0 58px;
  background: #f8fafc;
}
.modules-top-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.36fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 34px;
}
.place-suggestion-card {
  padding: 0;
  overflow: hidden;
  min-height: 318px;
}
.place-suggestion-media {
  position: relative;
  height: 178px;
  overflow: hidden;
}
.place-suggestion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.place-suggestion-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0891b2;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}
.place-suggestion-content {
  padding: 22px 24px 24px;
}
.place-suggestion-kicker {
  color: #0eabbc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.place-suggestion-title {
  color: var(--dark);
  font-size: 25px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 9px;
}
.place-suggestion-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.52;
  margin-bottom: 14px;
}
.place-suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.place-suggestion-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
}
.place-suggestion-meta i {
  color: #06b6d4;
}
.place-suggestion-meta .place-open {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.place-suggestion-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 13px;
  background: #0bbcd1;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.modules-top-grid .preview-recommended-route {
  margin-bottom: 0;
  min-height: 318px;
}
.modules-top-grid .route-img-wrapper {
  width: 320px;
  height: auto;
  min-height: 100%;
}
.local-market-module {
  background: #f8fafc;
}
.local-market-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.local-market-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}
.local-market-title i {
  color: #f97316;
  font-size: 24px;
}
.local-market-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.45;
}
.local-market-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0891b2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 8px;
}
.market-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.market-product-card {
  background: #fff;
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}
.market-product-img {
  width: 100%;
  aspect-ratio: 2.04 / 1;
  object-fit: cover;
  display: block;
  border-radius: 17px;
  margin-bottom: 14px;
}
.market-product-vendor {
  display: block;
  color: #475569;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 4px;
}
.market-product-title {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 14px;
}
.market-product-price {
  display: block;
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 18px;
}
.market-product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.45);
  background: rgba(20, 184, 166, 0.11);
  color: #0f9f94;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.market-product-button:hover {
  background: #14b8a6;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .modules-top-grid {
    grid-template-columns: 1fr;
  }
  .modules-top-grid .route-img-wrapper {
    width: 100%;
    height: 220px;
    min-height: 0;
  }
}
@media (max-width: 720px) {
  .local-market-header {
    flex-direction: column;
    gap: 8px;
  }
  .market-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .local-market-title {
    font-size: 24px;
  }
}
/* end f360 requested modules update */
/* f360 discover module content */
.section-discover .discover-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.section-discover .discover-card-content {
  bottom: 22px;
}
.section-discover .discover-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  font-size: 16px;
  transition: transform .25s ease, background .25s ease;
}
.section-discover .discover-card:hover .discover-card-icon {
  transform: translateY(-2px) scale(1.05);
}
.section-discover .discover-card-icon.color-cyan { background: rgba(6, 182, 212, 0.72); }
.section-discover .discover-card-icon.color-rose { background: rgba(244, 63, 94, 0.72); }
.section-discover .discover-card-icon.color-emerald { background: rgba(16, 185, 129, 0.72); }
.section-discover .discover-card-icon.color-purple { background: rgba(147, 51, 234, 0.72); }
.section-discover .discover-card-icon.color-blue { background: rgba(37, 99, 235, 0.72); }
.section-discover .discover-feature-card {
  min-height: 320px;
  height: 320px;
}
.section-discover .discover-feature-card .discover-card-title {
  font-size: 22px;
  line-height: 1.05;
}
.section-discover .discover-feature-card .discover-card-desc {
  font-size: 13px;
}
@media (max-width: 1024px) {
  .section-discover .discover-feature-card {
    height: 280px;
    min-height: 280px;
  }
}
/* end f360 discover module content */
/* f360 market flash layout */
.market-flash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, 0.92fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 4px;
}
.market-flash-grid .local-market-module {
  min-width: 0;
}
.compact-local-market {
  padding: 24px;
  border-radius: 24px;
}
.compact-local-market .local-market-header {
  gap: 16px;
  margin-bottom: 18px;
}
.compact-local-market .local-market-title {
  font-size: 24px;
  margin-bottom: 6px;
}
.compact-local-market .local-market-title i {
  font-size: 21px;
}
.compact-local-market .local-market-subtitle {
  max-width: 560px;
  font-size: 13px;
  line-height: 1.38;
}
.compact-local-market .local-market-link {
  font-size: 13px;
  margin-top: 5px;
}
.compact-local-market .market-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.compact-local-market .market-product-card {
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}
.compact-local-market .market-product-img {
  aspect-ratio: 2.1 / 1;
  border-radius: 14px;
  margin-bottom: 10px;
}
.compact-local-market .market-product-vendor {
  font-size: 10px;
  margin-bottom: 3px;
}
.compact-local-market .market-product-title {
  min-height: 34px;
  font-size: 14px;
  line-height: 1.22;
  margin-bottom: 8px;
}
.compact-local-market .market-product-price {
  font-size: 16px;
  margin-bottom: 10px;
}
.compact-local-market .market-product-button {
  min-height: 36px;
  border-radius: 10px;
  font-size: 12px;
}
.flash-deal-module {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  background: #082f49;
}
.flash-deal-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}
.flash-deal-module::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 184, 166, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.34) 38%, rgba(2, 6, 23, 0.88) 100%);
}
.flash-deal-module:hover .flash-deal-bg {
  transform: scale(1.06);
}
.flash-deal-panel {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
}
.flash-deal-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
}
.flash-deal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}
.flash-deal-title {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 32px;
  line-height: 1.04;
  font-weight: 800;
}
.flash-deal-desc {
  max-width: 340px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.45;
}
.flash-deal-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.flash-deal-pricebox {
  display: grid;
  gap: 4px;
}
.flash-old-price {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}
.flash-price {
  color: #fbbf24;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.flash-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 82px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #0369a1;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.22);
}
@media (max-width: 1120px) {
  .market-flash-grid {
    grid-template-columns: 1fr;
  }
  .flash-deal-module {
    min-height: 390px;
  }
}
@media (max-width: 720px) {
  .compact-local-market {
    padding: 20px;
  }
  .compact-local-market .market-product-grid {
    grid-template-columns: 1fr;
  }
  .flash-deal-panel {
    padding: 22px;
  }
  .flash-deal-title {
    font-size: 27px;
  }
}
/* end f360 market flash layout */
/* f360 guide page */
.guide-page {
  --page-bg: #f5fbff;
  background: #f5fbff;
  color: #0b244a;
}
.guide-page .topbar {
  top: 18px;
}
.guide-main {
  position: relative;
  overflow: hidden;
  padding-top: 132px;
  background:
    radial-gradient(circle at 16% 12%, rgba(56, 189, 248, 0.16), transparent 31%),
    radial-gradient(circle at 84% 20%, rgba(45, 212, 191, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fdff 0%, #f3faff 46%, #f7fbff 100%);
}
.guide-main::before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 430px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(245,251,255,0.94)), url('/theme/fethiye/kabak_bay.png') center 38% / cover no-repeat;
  opacity: 0.11;
}
.guide-shell {
  position: relative;
  z-index: 1;
  width: min(1536px, calc(100% - 64px));
  margin: 0 auto;
}
.guide-hero-section {
  padding: 0 0 26px;
}
.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
  gap: 48px;
  align-items: center;
}
.guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7f7ff;
  color: #087996;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}
.guide-hero-copy h1 {
  margin: 18px 0 14px;
  color: #0b244a;
  font-size: clamp(46px, 4.2vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}
.guide-hero-copy h1 span {
  color: #08abc4;
}
.guide-hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #48627f;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}
.guide-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 44px 76px;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  min-height: 62px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(8, 145, 178, 0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 45px rgba(15, 91, 129, 0.10);
}
.guide-search > i {
  color: #0891b2;
  font-size: 18px;
}
.guide-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #0b244a;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
}
.guide-search input::placeholder {
  color: #7a8da8;
}
.guide-locate,
.guide-search-btn {
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.guide-locate {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #0f7490;
  background: #edf8fb;
}
.guide-search-btn {
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14c8d2, #069ac6);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.guide-locate:hover,
.guide-search-btn:hover {
  transform: translateY(-1px);
}
.guide-popular-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #1f3a60;
  font-size: 12px;
}
.guide-popular-tags strong {
  font-weight: 900;
}
.guide-popular-tags a {
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf8ff;
  color: #0786b2;
  text-decoration: none;
  font-weight: 800;
}
.guide-visual-card {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background: #dff4ff;
  box-shadow: 0 22px 54px rgba(11, 36, 74, 0.13);
}
.guide-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 63, 0.02) 0%, rgba(8, 29, 63, 0.16) 100%);
}
.guide-visual-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-1deg);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: #fff;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 5px 0 #07345f, 0 10px 26px rgba(0,0,0,0.45);
  -webkit-text-stroke: 2px #07345f;
  white-space: nowrap;
}
.guide-visual-logo strong {
  color: #14c8d2;
}
.guide-visual-stats {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 1px;
  width: min(520px, calc(100% - 44px));
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}
.guide-visual-stats div {
  min-height: 66px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: #0b244a;
  text-align: center;
}
.guide-visual-stats div + div {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}
.guide-visual-stats i {
  color: #12b8c9;
  font-size: 18px;
}
.guide-visual-stats strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}
.guide-visual-stats span {
  color: #5e718c;
  font-size: 11px;
  font-weight: 800;
}
.guide-category-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  min-height: 86px;
  padding: 16px;
  margin-top: 8px;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 45px rgba(15, 91, 129, 0.10);
}
.guide-category {
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #0d2b57;
  display: grid;
  place-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.guide-category i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0aaac4;
  background: #eefaff;
  font-size: 17px;
}
.guide-category:nth-child(2) i { color: #f97316; background: #fff1e8; }
.guide-category:nth-child(3) i { color: #7c3aed; background: #f4ecff; }
.guide-category:nth-child(4) i { color: #10b981; background: #ecfdf5; }
.guide-category:nth-child(5) i { color: #0ea5e9; background: #eef8ff; }
.guide-category:nth-child(6) i { color: #0284c7; background: #edf7ff; }
.guide-category:nth-child(7) i { color: #16a34a; background: #effcf3; }
.guide-category:nth-child(8) i { color: #6366f1; background: #eef2ff; }
.guide-category:nth-child(9) i { color: #8b5cf6; background: #f5f0ff; }
.guide-category.active,
.guide-category:hover {
  background: #e8fbff;
  transform: translateY(-1px);
}
.guide-category.active i {
  background: #d5f7ff;
}
.guide-category.all {
  background: #effaff;
  color: #0891b2;
}
.guide-category.all i {
  width: auto;
  height: auto;
  background: transparent;
}
.guide-content-area {
  padding: 28px 0 0;
}
.guide-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.guide-filter {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(8, 145, 178, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #0f315f;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.guide-filter.active {
  background: #0c2c52;
  color: #fff;
  border-color: #0c2c52;
}
.guide-filter i {
  margin-right: 7px;
  color: #0db4c8;
}
.guide-filter.active i {
  color: #fff;
}
.guide-filter.more {
  margin-left: auto;
}
.guide-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
  align-items: start;
}
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.guide-place-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 145, 178, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 91, 129, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.guide-place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 91, 129, 0.15);
  border-color: rgba(8, 145, 178, 0.25);
}
.guide-card-media {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.guide-place-card:hover .guide-card-media img {
  transform: scale(1.05);
}
.guide-card-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(6, 41, 78, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.guide-card-body {
  position: relative;
  padding: 16px 48px 16px 16px;
}
.guide-card-body h3 {
  margin: 0 0 7px;
  color: #0b244a;
  font-size: 18px;
  line-height: 1.16;
  font-weight: 900;
}
.guide-card-body p,
.guide-card-body small {
  display: block;
  margin: 0 0 8px;
  color: #60758e;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}
.guide-card-body p i {
  color: #0891b2;
  margin-right: 5px;
}
.guide-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b315f;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.guide-card-body button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 49, 95, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #0f315f;
  cursor: pointer;
}
.guide-sidebar {
  display: grid;
  gap: 18px;
}
.guide-map-card,
.guide-weather-card,
.guide-tip-card,
.guide-plan-banner,
.guide-info-panel,
.guide-quick-panel,
.guide-faq-panel {
  border: 1px solid rgba(8, 145, 178, 0.13);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(15, 91, 129, 0.08);
}
.guide-map-card {
  overflow: hidden;
  background: #082e52;
  color: #fff;
  transition: var(--transition);
}
.guide-map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.3);
}
.guide-map-card img {
  transition: transform 0.4s ease;
}
.guide-map-card:hover img {
  transform: scale(1.05);
}
.guide-sidebar-title {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dff8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.guide-sidebar-title button {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.guide-map-stage {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.guide-map-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.18) contrast(1.08);
}
.guide-map-stage strong {
  position: absolute;
  left: 49%;
  top: 46%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.guide-pin {
  position: absolute;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  color: #fff;
  background: #12b8c9;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.guide-pin i {
  transform: rotate(45deg);
}
.guide-pin.p1 { left: 18%; top: 28%; background: #f97316; }
.guide-pin.p2 { right: 18%; bottom: 26%; background: #7c3aed; }
.guide-pin.p3 { left: 31%; bottom: 18%; background: #0ea5e9; }
.guide-pin.p4 { right: 28%; top: 32%; background: #10b981; }
.guide-weather-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  background: linear-gradient(135deg, #073358, #075b7b 58%, #0891b2);
  color: #fff;
}
.guide-weather-card span {
  display: block;
  margin-bottom: 6px;
  color: #d8f7ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.guide-weather-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.guide-weather-card strong i {
  color: #fbbf24;
  margin-right: 8px;
}
.guide-weather-card small {
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.guide-weather-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.guide-weather-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #dcf7ff;
  font-size: 13px;
}
.guide-weather-card li span {
  margin: 0;
  text-transform: none;
  color: #c7f1ff;
}
.guide-weather-card a {
  max-width: 92px;
  color: #baf7ff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}
.guide-tip-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 24px;
  background: linear-gradient(135deg, #3150a8, #036b9a 72%);
  color: #fff;
}
.guide-tip-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 900;
}
.guide-tip-card h3 i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
}
.guide-tip-card p {
  max-width: 470px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.guide-tip-card span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
}
.guide-tip-card a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: #dffbff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}
.guide-plan-banner {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #11c4d3, #006da1 68%, #0a2a56);
  color: #fff;
}
.guide-plan-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.16);
  font-size: 34px;
}
.guide-plan-banner h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}
.guide-plan-banner p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}
.guide-plan-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}
.guide-plan-actions a,
.guide-plan-actions button {
  min-height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.guide-plan-actions a {
  background: #fff;
  color: #047595;
}
.guide-plan-actions button {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.guide-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .78fr) minmax(340px, .9fr);
  gap: 20px;
  padding: 26px 0 40px;
}
.guide-info-panel,
.guide-quick-panel,
.guide-faq-panel {
  background: rgba(255,255,255,0.95);
  padding: 24px;
}
.guide-info-panel span,
.guide-quick-panel h3,
.guide-faq-panel h3 {
  margin: 0 0 14px;
  color: #12335e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.guide-info-panel h2 {
  max-width: 820px;
  margin: 0 0 12px;
  color: #0b244a;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}
.guide-info-panel p {
  max-width: 860px;
  margin: 0;
  color: #60758e;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}
.guide-quick-panel,
.guide-faq-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}
.guide-quick-panel a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: #f3faff;
  color: #12335e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}
.guide-quick-panel a i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e4fbff;
  color: #0aaac4;
}
.guide-quick-panel small {
  display: block;
  margin-top: 2px;
  color: #6a7d94;
  font-size: 12px;
  font-weight: 700;
}
.guide-faq-panel details {
  border-radius: 13px;
  background: #f5fbff;
  padding: 12px 14px;
}
.guide-faq-panel summary {
  cursor: pointer;
  color: #12335e;
  font-size: 14px;
  font-weight: 900;
}
.guide-faq-panel p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.guide-page .f360-sea-footer {
  margin-top: 0;
}
@media (max-width: 1280px) {
  .guide-shell { width: min(100% - 40px, 1180px); }
  .guide-hero-grid,
  .guide-layout-grid,
  .guide-bottom-grid { grid-template-columns: 1fr; }
  .guide-sidebar { grid-template-columns: 1fr 1fr; }
  .guide-map-card { grid-column: span 2; }
  .guide-category-strip { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 760px) {
  .guide-main { padding-top: 108px; }
  .guide-shell { width: min(100% - 28px, 620px); }
  .guide-search { grid-template-columns: 22px 1fr 42px; }
  .guide-search-btn { grid-column: 1 / -1; }
  .guide-visual-card { min-height: 300px; }
  .guide-visual-stats { grid-template-columns: repeat(2, 1fr); left: 16px; right: 16px; width: auto; }
  .guide-category-strip { grid-template-columns: repeat(2, 1fr); }
  .guide-sidebar { grid-template-columns: 1fr; }
  .guide-map-card { grid-column: auto; }
  .guide-weather-card,
  .guide-plan-banner { grid-template-columns: 1fr; }
  .guide-filter.more { margin-left: 0; }
}
/* end f360 guide page */
/* f360 guide refinements */
.guide-page .topbar.scrolled {
  top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
}
.guide-page .topbar.scrolled .topbar-inner {
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
}
.guide-shell {
  width: 100%;
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}
.guide-hero-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
}
.guide-category-strip {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  min-height: 106px;
  padding: 18px;
}
.guide-category {
  min-height: 72px;
  font-size: 14px;
}
.guide-category i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 20px;
}
.guide-category:nth-child(1) i { color: #0ea5e9; background: #e7f7ff; }
.guide-category:nth-child(2) i { color: #f97316; background: #fff1e8; }
.guide-category:nth-child(3) i { color: #7c3aed; background: #f4ecff; }
.guide-category:nth-child(4) i { color: #16a34a; background: #effcf3; }
.guide-category:nth-child(5) i { color: #0284c7; background: #edf7ff; }
.guide-category:nth-child(6) i { color: #f43f5e; background: #fff1f4; }
.guide-category:nth-child(7) i { color: #f59e0b; background: #fff7e6; }
.guide-category:nth-child(8) i { color: #8b5cf6; background: #f5f0ff; }
.guide-content-area {
  padding-top: 34px;
}
.guide-layout-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
}
.guide-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.guide-place-card {
  border-radius: 22px;
}
.guide-card-media {
  height: 205px;
}
.guide-card-media span {
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  font-size: 11px;
}
.guide-card-body {
  min-height: 160px;
  padding: 20px 58px 20px 20px;
}
.guide-card-body h3 {
  font-size: 22px;
  margin-bottom: 9px;
}
.guide-card-body p,
.guide-card-body small {
  font-size: 15px;
  line-height: 1.42;
  margin-bottom: 9px;
}
.guide-card-body a {
  font-size: 14px;
}
.guide-card-body button {
  width: 42px;
  height: 42px;
  right: 16px;
  bottom: 16px;
  border-radius: 12px;
}
@media (max-width: 1280px) {
  .guide-shell {
    width: 100%;
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .guide-layout-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
  .guide-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1120px) {
  .guide-hero-grid,
  .guide-layout-grid {
    grid-template-columns: 1fr;
  }
  .guide-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .guide-sidebar {
    grid-template-columns: 1fr 1fr;
  }
  .guide-map-card {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .guide-category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .guide-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .guide-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-card-grid,
  .guide-sidebar {
    grid-template-columns: 1fr;
  }
  .guide-map-card {
    grid-column: auto;
  }
}
/* end f360 guide refinements */
/* f360 guide sidebar correction */
@media (max-width: 1280px) and (min-width: 1121px) {
  .guide-sidebar {
    grid-template-columns: 1fr;
  }
  .guide-map-card {
    grid-column: auto;
  }
}
/* end f360 guide sidebar correction */
/* f360 guide real categories */
.guide-category-strip {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.guide-category {
  text-decoration: none;
}
.guide-category span, .guide-category i {
  transition: all 0.3s ease;
}
.guide-category:nth-child(1) i { color: #0f766e; background: #f0fdfa; }
.guide-category:nth-child(2) i { color: #0ea5e9; background: #e7f7ff; }
.guide-category:nth-child(3) i { color: #16a34a; background: #effcf3; }
.guide-category:nth-child(4) i { color: #15803d; background: #ecfdf5; }
.guide-category:nth-child(5) i { color: #7c3aed; background: #f4ecff; }
.guide-category:nth-child(6) i { color: #0284c7; background: #edf7ff; }
.guide-category:nth-child(7) i { color: #f97316; background: #fff1e8; }
.guide-category:nth-child(8) i { color: #06b6d4; background: #e8fbff; }
@media (max-width: 900px) {
  .guide-category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .guide-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* end f360 guide real categories */
/* f360 requested hero background update */
.hero {
  overflow: visible;
  background-image: url('/theme/fethiye/fethiye360-reference-hero-bg.webp') !important;
  background-position: center 42% !important;
}
.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 18, 45, 0.56) 0%, rgba(2, 18, 45, 0.24) 42%, rgba(2, 18, 45, 0.06) 100%),
    linear-gradient(180deg, rgba(2, 18, 45, 0.22) 0%, rgba(2, 18, 45, 0.10) 58%, rgba(243, 244, 246, 0.22) 100%) !important;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(150px, 15vw, 230px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(243, 244, 246, 0) 0%, rgba(243, 244, 246, 0.18) 44%, rgba(243, 244, 246, 0.72) 78%, #f3f4f6 100%);
}
.f360-sea-hero-wave {
  bottom: -2px !important;
  height: clamp(92px, 8.8vw, 132px) !important;
  opacity: 0.9 !important;
}
.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(1) { opacity: 0.72 !important; }
.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(2) { opacity: 0.78 !important; }
.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(3) { opacity: 0.86 !important; }
.f360-sea-hero-wave .f360-wave-parallax > use:nth-child(4) { opacity: 0.98 !important; }
/* end f360 requested hero background update */
/* f360 guide weather card resize */
.guide-weather-card {
  min-height: 264px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 20px;
}
.guide-weather-card > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "label label"
    "temp state";
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
}
.guide-weather-card > div > span {
  grid-area: label;
  display: block;
  margin: 0;
  color: #d8f7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.guide-weather-card strong {
  grid-area: temp;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 52px;
  line-height: .95;
}
.guide-weather-card strong i {
  flex: 0 0 auto;
  margin-right: 10px;
  font-size: 46px;
}
.guide-weather-card small {
  grid-area: state;
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}
.guide-weather-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.guide-weather-card li {
  display: grid;
  justify-content: initial;
  gap: 5px;
  padding: 0;
  color: #dcf7ff;
  font-size: 14px;
}
.guide-weather-card li span {
  display: block;
  margin: 0;
  color: #baf7ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}
.guide-weather-card li b {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.guide-weather-card a {
  justify-self: end;
  align-self: end;
  max-width: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #baf7ff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}
@media (max-width: 640px) {
  .guide-weather-card {
    min-height: 300px;
  }
  .guide-weather-card ul {
    grid-template-columns: 1fr;
  }
}
/* end f360 guide weather card resize */
/* f360 index weather events stats adjustments */
.weather {
  width: 320px;
  min-height: 320px;
  padding: 32px 30px;
  justify-content: center;
}
.weather-top {
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 2px;
}
.weather .sun {
  font-size: 48px !important;
}
.weather-top strong {
  font-size: 46px;
  line-height: .95;
}
.weather-top small {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.25;
}
.w-row {
  padding: 17px 0;
  font-size: 15px;
  gap: 14px;
}
.w-row span {
  gap: 11px;
}
.w-row span i {
  width: 22px;
  font-size: 18px;
}
.w-row b {
  font-size: 15px;
  font-weight: 800;
}
.card-events .section-header {
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
}
.card-events .section-title {
  font-size: 24px;
  line-height: 1.1;
  white-space: nowrap;
}
.card-events .section-link {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13px;
}
.stats-bar {
  margin-top: 10px;
  margin-bottom: 44px;
}
@media (max-width: 1120px) {
  .weather {
    width: min(100%, 420px);
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .weather {
    width: 100%;
    min-height: 280px;
    padding: 28px 24px;
  }
  .card-events .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .card-events .section-title {
    white-space: normal;
  }
}
/* end f360 index weather events stats adjustments */
/* f360 community section three cards */
.community-section-full {
  width: min(100% - 48px, 1360px);
}
.community-section-full .community-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.community-section-full .community-card:nth-child(n+4) {
  display: none;
}
.community-section-full .community-img-wrapper {
  height: 230px;
}
.community-section-full .community-card-header,
.community-section-full .community-card-body {
  padding: 20px;
}
.community-section-full .community-avatar {
  width: 44px;
  height: 44px;
}
.community-section-full .community-username {
  font-size: 15px;
}
.community-section-full .community-time {
  font-size: 12px;
}
.community-section-full .community-caption {
  height: 44px;
  font-size: 15px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .community-section-full .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .community-section-full {
    width: calc(100% - 32px);
  }
  .community-section-full .community-grid {
    grid-template-columns: 1fr;
  }
}
/* end f360 community section three cards */
/* f360 page width and spacing normalization */
:root {
  --f360-page-max: 1340px;
  --f360-page-gutter: clamp(24px, 3vw, 40px);
  --f360-gap-sm: 20px;
  --f360-gap-md: 24px;
  --f360-gap-lg: 28px;
  --f360-section-y: 44px;
}
.container,
.community-section-full,
.f360-footer-inner {
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.topbar {
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
}
.section {
  padding-top: var(--f360-section-y);
  padding-bottom: var(--f360-section-y);
}
.section + .section {
  padding-top: 32px;
}
.section-discover {
  padding-top: 67px;
  padding-bottom: 44px;
}
.stats-section {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}
.stats-section + .section {
  padding-top: 32px;
}
.section-header {
  margin-bottom: var(--f360-gap-lg);
}
.discover-carousel,
.businesses-grid,
.market-product-grid,
.compact-local-market .market-product-grid {
  gap: var(--f360-gap-md);
}
.main-grid {
  grid-template-columns: minmax(0, 2fr) minmax(360px, .92fr);
  gap: var(--f360-gap-lg);
  align-items: start;
}
.market-flash-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, .95fr);
  gap: var(--f360-gap-lg);
}
.modules-top-grid,
.feature-grid,
.community-section-full .community-grid {
  gap: var(--f360-gap-lg);
}
.stats-bar {
  margin-top: 0;
  margin-bottom: 0;
}
.card-events,
.business-card,
.discover-card,
.community-card,
.feature,
.local-market-module,
.flash-deal-module,
.stats-bar {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}
@media (max-width: 1120px) {
  .container,
  .community-section-full,
  .f360-footer-inner,
  .topbar {
    width: calc(100% - 48px) !important;
  }
  .main-grid,
  .market-flash-grid,
  .modules-top-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  :root {
    --f360-page-gutter: 16px;
    --f360-section-y: 38px;
  }
  .container,
  .community-section-full,
  .f360-footer-inner,
  .topbar {
    width: calc(100% - 32px) !important;
  }
  .section-discover {
    padding-top: 53px;
  }
}
/* end f360 page width and spacing normalization */
/* f360 scrolled menu full white band */
.topbar,
.topbar-inner {
  transition: top .28s cubic-bezier(.22, 1, .36, 1), border-radius .28s cubic-bezier(.22, 1, .36, 1) !important;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  border-bottom: 1px solid rgba(8, 145, 178, 0.08);
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: height .28s cubic-bezier(.22, 1, .36, 1), opacity .18s ease !important;
}
body:has(.topbar.scrolled)::before {
  height: 88px;
  opacity: 1;
}
.topbar {
  overflow: visible !important;
  background: #fff !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  will-change: top, border-radius;
}
.topbar.scrolled {
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  padding: 0 !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  filter: none !important;
  backdrop-filter: none !important;
  z-index: 100;
}
.topbar.scrolled .topbar-inner {
  width: 100% !important;
  max-width: 1340px !important;
  height: 76px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  filter: none !important;
  backdrop-filter: none !important;
}
.topbar.scrolled .nav-dropdown-menu {
  z-index: 1000 !important;
}
@media (max-width: 1120px) {
  .topbar.scrolled {
    width: calc(100% - 48px) !important;
  }
}
@media (max-width: 640px) {
  body:has(.topbar.scrolled)::before {
    height: 76px;
  }
  .topbar.scrolled {
    width: calc(100% - 32px) !important;
  }
  .topbar.scrolled .topbar-inner {
    height: 64px !important;
    padding: 0 16px !important;
  }
}
/* end f360 scrolled menu full white band */
/* f360 stats band visual refresh */
.stats-section {
  margin-bottom: 36px !important;
}
.stats-bar {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f6fdff 48%, #fff8ed 100%) !important;
  border: 1px solid rgba(8, 145, 178, 0.12);
  box-shadow: 0 20px 46px rgba(15, 91, 129, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #22c55e, #3b82f6, #f43f5e, #f59e0b);
}
.stats-inner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(280px, 1.18fr);
  align-items: stretch !important;
  gap: 0;
  padding: 26px 30px 24px;
}
.stat-item,
.stat-happy-users {
  position: relative;
  min-height: 86px;
  padding: 16px 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 0 !important;
  background: rgba(255, 255, 255, 0.54);
  transition: transform .22s ease, background-color .22s ease;
}
.stat-item:not(:first-child)::before,
.stat-happy-users::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.24), transparent);
}
.stat-item:hover,
.stat-happy-users:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}
.stat-icon-box {
  position: relative;
  flex: 0 0 60px;
  width: 60px !important;
  height: 60px !important;
  border-radius: 20px !important;
  font-size: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 22px rgba(15, 91, 129, 0.08);
}
.stats-inner > .stat-item:nth-child(1) .stat-icon-box {
  color: #0891b2;
  background: linear-gradient(135deg, #dcfaff, #bff2ff);
}
.stats-inner > .stat-item:nth-child(2) .stat-icon-box {
  color: #f97316;
  background: linear-gradient(135deg, #fff3e5, #fed7aa);
}
.stats-inner > .stat-item:nth-child(3) .stat-icon-box {
  color: #2563eb;
  background: linear-gradient(135deg, #eaf3ff, #bfdbfe);
}
.stats-inner > .stat-item:nth-child(4) .stat-icon-box {
  color: #e11d48;
  background: linear-gradient(135deg, #fff1f5, #fecdd3);
}
.stat-info {
  min-width: 0;
  gap: 3px;
}
.stat-number {
  font-size: 25px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #082f49 !important;
}
.stats-inner > .stat-item:nth-child(1) .stat-number { color: #0e7490 !important; }
.stats-inner > .stat-item:nth-child(2) .stat-number { color: #c2410c !important; }
.stats-inner > .stat-item:nth-child(3) .stat-number { color: #1d4ed8 !important; }
.stats-inner > .stat-item:nth-child(4) .stat-number { color: #be123c !important; }
.stat-label {
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  color: #475569 !important;
  white-space: nowrap;
}
.stat-happy-users {
  padding-left: 28px !important;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
}
.user-avatar-group {
  flex: 0 0 auto;
  padding: 5px 8px 5px 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 91, 129, 0.08);
}
.user-avatar-group img {
  width: 38px !important;
  height: 38px !important;
  border: 3px solid #fff !important;
  margin-left: -10px !important;
}
.user-avatar-group img:first-child {
  margin-left: 0 !important;
}
.stat-happy-users .stat-number {
  color: #0f172a !important;
}
@media (max-width: 1120px) {
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
  }
  .stat-item::before,
  .stat-happy-users::before {
    display: none;
  }
  .stat-happy-users {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .stats-bar {
    border-radius: 22px !important;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .stat-item,
  .stat-happy-users {
    min-height: 78px;
    padding: 14px 16px !important;
  }
  .stat-happy-users {
    grid-column: auto;
  }
  .stat-icon-box {
    flex-basis: 54px;
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
  }
  .stat-number {
    font-size: 23px !important;
  }
}
/* end f360 stats band visual refresh */
/* f360 events place swap polish */
.main-grid > .place-suggestion-card {
  align-self: stretch;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 145, 178, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}
.main-grid > .place-suggestion-card .place-suggestion-media {
  height: auto;
  min-height: 350px;
  flex: 1 1 360px;
  border-radius: 0 0 26px 26px;
}
.main-grid > .place-suggestion-card .place-suggestion-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}
.main-grid > .place-suggestion-card .place-suggestion-media img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.main-grid > .place-suggestion-card .place-suggestion-content {
  flex: 0 0 auto;
  padding: 28px 30px 30px;
}
.main-grid > .place-suggestion-card .place-suggestion-title {
  font-size: 27px;
  margin-bottom: 10px;
}
.main-grid > .place-suggestion-card .place-suggestion-desc {
  font-size: 15px;
  line-height: 1.58;
  margin-bottom: 18px;
}
.main-grid > .place-suggestion-card .place-suggestion-meta {
  margin-bottom: 18px;
}
.main-grid > .place-suggestion-card .place-suggestion-action {
  min-height: 46px;
  padding: 0 18px;
}
.modules-top-grid > .card-events {
  margin: 0;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(8, 145, 178, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}
.modules-top-grid > .card-events .section-header {
  margin-bottom: 16px;
}
.modules-top-grid > .card-events .events-list {
  gap: 12px;
}
.modules-top-grid > .card-events .event {
  margin-top: 0;
  grid-template-columns: 66px 52px 1fr;
  gap: 14px;
}
.modules-top-grid > .card-events .event img {
  width: 66px;
  height: 66px;
}
.modules-top-grid > .card-events .date {
  width: 52px;
  height: 62px;
}
@media (max-width: 1120px) {
  .main-grid > .place-suggestion-card {
    min-height: auto;
  }
  .main-grid > .place-suggestion-card .place-suggestion-media {
    height: 280px;
    min-height: 0;
    flex: 0 0 auto;
    border-radius: 0 0 22px 22px;
  }
  .modules-top-grid > .card-events {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .main-grid > .place-suggestion-card .place-suggestion-media {
    height: 230px;
  }
  .main-grid > .place-suggestion-card .place-suggestion-content {
    padding: 22px 22px 24px;
  }
  .main-grid > .place-suggestion-card .place-suggestion-title {
    font-size: 24px;
  }
}
/* end f360 events place swap polish */

/* f360 mobile bottom navigation transfer */
.f360-mobile-dock {
  display: none;
}
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }
  .f360-sea-footer {
    display: none !important;
  }
  .f360-mobile-dock {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    max-width: 448px;
    transform: translateX(-50%);
    z-index: 120;
    display: block;
    pointer-events: none;
  }
  .f360-bottom-nav {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    min-height: 72px;
    margin: 0 auto;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 4px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.76);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 46px rgba(11, 157, 168, 0.24), 0 4px 14px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
  }
  .f360-bottom-nav-link {
    position: relative;
    width: min(58px, 100%);
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 16px;
    color: rgba(28, 46, 61, 0.58);
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.24s ease, transform 0.24s ease, background 0.24s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .f360-bottom-nav-link i,
  .f360-bottom-nav-link span:not(.f360-bottom-nav-active-glow) {
    position: relative;
    z-index: 1;
  }
  .f360-bottom-nav-link i {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.26s ease;
  }
  .f360-bottom-nav-link:hover,
  .f360-bottom-nav-link.is-active {
    color: #0b9da8;
  }
  .f360-bottom-nav-link:active {
    transform: scale(0.92);
  }
  .f360-bottom-nav-link.is-active i {
    transform: translateY(-1px) scale(1.08);
  }
  .f360-bottom-nav-active-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 16px;
    background: rgba(11, 157, 168, 0.1);
    filter: blur(2px);
    transform: scale(1.08);
    animation: f360-mobile-nav-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  .f360-bottom-nav-create {
    color: #fff;
    background: linear-gradient(135deg, #0bbcd1, #0b9da8);
    box-shadow: 0 10px 22px rgba(11, 157, 168, 0.26);
  }
  .f360-bottom-nav-create:hover {
    color: #fff;
  }
}
@media (max-width: 520px) {
  .f360-mobile-dock {
    width: calc(100vw - 16px);
    max-width: 366px;
  }
}
@media (max-width: 420px) {
  .f360-mobile-dock {
    left: 50%;
    right: auto;
    width: calc(100vw - 16px);
    transform: translateX(-50%);
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .f360-bottom-nav {
    min-height: 68px;
    padding: 7px 6px;
    border-radius: 20px;
  }
  .f360-bottom-nav-link {
    width: min(52px, 100%);
    height: 54px;
    font-size: 8.5px;
  }
  .f360-bottom-nav-link i {
    font-size: 19px;
  }
}
@keyframes f360-mobile-nav-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1.02); }
  50% { opacity: 1; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .f360-bottom-nav-active-glow {
    animation: none;
  }
  .f360-bottom-nav-link,
  .f360-bottom-nav-link i {
    transition: none;
  }
}
/* end f360 mobile bottom navigation transfer */
/* f360 guide width parity with index */
.guide-shell {
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.guide-page .topbar.scrolled .topbar-inner {
  max-width: var(--f360-page-max) !important;
}
@media (max-width: 1120px) {
  .guide-shell {
    width: calc(100% - 48px) !important;
  }
}
@media (max-width: 640px) {
  .guide-shell {
    width: calc(100% - 32px) !important;
  }
}
/* end f360 guide width parity with index */

/* f360 community social actions polish */
.community-section-full .community-card {
  border: 1px solid rgba(8, 145, 178, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.community-section-full .community-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 145, 178, 0.2);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.11);
}
.community-section-full .community-card:hover .community-img {
  transform: scale(1.065);
}
.community-section-full .community-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 14px;
}
.community-social-left,
.community-social-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.community-action {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f8fafc;
  color: #64748b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.82);
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}
.community-action i {
  font-size: 14px;
  transition: transform 0.22s ease;
}
.community-action:hover {
  transform: translateY(-2px);
  color: #0f172a;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(8, 145, 178, 0.13), 0 10px 20px rgba(15, 23, 42, 0.08);
}
.community-action:hover i {
  transform: scale(1.08);
}
.community-action:active {
  transform: translateY(0) scale(0.97);
}
.community-action.like {
  color: #e11d48;
  background: #fff1f4;
  box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.13);
}
.community-action.like:hover {
  color: #be123c;
  background: #ffe4eb;
  box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.22), 0 12px 22px rgba(225, 29, 72, 0.12);
}
.community-action.comment:hover {
  color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16), 0 12px 22px rgba(37, 99, 235, 0.1);
}
.community-action.share:hover {
  color: #0891b2;
  background: #ecfeff;
  box-shadow: inset 0 0 0 1px rgba(8, 145, 178, 0.18), 0 12px 22px rgba(8, 145, 178, 0.12);
}
.community-action.save:hover {
  color: #7c3aed;
  background: #f5f3ff;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.18), 0 12px 22px rgba(124, 58, 237, 0.11);
}
@media (max-width: 520px) {
  .community-section-full .community-footer,
  .community-social-left,
  .community-social-right {
    width: 100%;
  }
  .community-action {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .community-section-full .community-card,
  .community-img,
  .community-action,
  .community-action i {
    transition: none;
  }
}
/* end f360 community social actions polish */
/* f360 local life emergency module */
.local-life-section {
  padding-top: 32px;
}
.local-life-header .section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.local-life-header .section-title i {
  color: #0d9488;
  font-size: 24px;
}
.local-life-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--f360-gap-lg);
  align-items: stretch;
}
.local-life-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.local-life-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0));
}
.local-life-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15,23,42,0), rgba(15,23,42,0.22));
}
.local-life-card-large {
  grid-column: span 2;
}
.local-life-pharmacy {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}
.local-life-auto {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.local-life-hospital {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}
.local-life-taxi {
  background: linear-gradient(135deg, #ff8008, #ffc837);
}
.local-life-watermark {
  position: absolute;
  right: -22px;
  bottom: -28px;
  color: rgba(255,255,255,0.11);
  font-size: 132px;
  line-height: 1;
  transform: rotate(-8deg);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.local-life-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.local-life-content {
  position: relative;
  z-index: 1;
  max-width: 96%;
}
.local-life-kicker {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.local-life-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
.local-life-card:not(.local-life-card-large) h3 {
  font-size: 24px;
}
.local-life-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}
.local-life-action {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 900;
  transition: color 0.24s ease;
}
.local-life-action i {
  transition: transform 0.24s ease;
}
.local-life-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.18);
  filter: saturate(1.04);
}
.local-life-card:hover .local-life-watermark {
  opacity: 0.92;
  transform: rotate(4deg) scale(1.13);
}
.local-life-card:hover .local-life-action {
  color: #fff;
}
.local-life-card:hover .local-life-action i {
  transform: translateX(4px);
}
@media (max-width: 1120px) {
  .local-life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-life-card-large {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .local-life-grid {
    grid-template-columns: 1fr;
  }
  .local-life-card,
  .local-life-card-large {
    grid-column: auto;
    min-height: 190px;
    border-radius: 24px;
    padding: 24px;
  }
  .local-life-card h3,
  .local-life-card:not(.local-life-card-large) h3 {
    font-size: 25px;
  }
  .local-life-watermark {
    font-size: 112px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .local-life-card,
  .local-life-watermark,
  .local-life-action,
  .local-life-action i {
    transition: none;
  }
}
/* end f360 local life emergency module */
/* f360 bottom action life route layout */
.bottom-action-section {
  padding-top: 32px;
  padding-bottom: 40px;
}
.bottom-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(360px, 0.88fr);
  gap: var(--f360-gap-lg);
  align-items: stretch;
  margin-bottom: 0;
}
.bottom-life-panel {
  min-width: 0;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(239,250,255,0.94));
  border: 1px solid rgba(14, 165, 233, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.bottom-life-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.bottom-life-header .section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bottom-life-header .section-title i {
  color: #0d9488;
  font-size: 24px;
}
.bottom-life-header .section-link {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.bottom-life-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bottom-life-grid .local-life-card {
  min-height: 178px;
  padding: 22px;
  border-radius: 24px;
}
.bottom-life-grid .local-life-card-large {
  grid-column: span 3;
  min-height: 194px;
}
.bottom-life-grid .local-life-card h3,
.bottom-life-grid .local-life-card:not(.local-life-card-large) h3 {
  font-size: 22px;
  line-height: 1.08;
}
.bottom-life-grid .local-life-card-large h3 {
  font-size: 29px;
}
.bottom-life-grid .local-life-card p {
  max-width: 300px;
  font-size: 13px;
  line-height: 1.42;
}
.bottom-life-grid .local-life-watermark {
  right: -18px;
  bottom: -24px;
  font-size: 112px;
}
.bottom-life-grid .local-life-badge {
  top: 18px;
  left: 18px;
}
.bottom-route-feature {
  height: auto;
  min-height: 100%;
  padding: 34px;
  border-radius: 32px;
}
.bottom-route-feature h2 {
  font-size: 32px;
}
.bottom-route-feature p {
  font-size: 16px;
  max-width: 240px;
}
.bottom-route-feature .white-btn {
  left: 34px;
  bottom: 34px;
}
@media (max-width: 1120px) {
  .bottom-action-grid {
    grid-template-columns: 1fr;
  }
  .bottom-route-feature {
    min-height: 330px;
  }
}
@media (max-width: 760px) {
  .bottom-life-panel {
    padding: 22px;
    border-radius: 26px;
  }
  .bottom-life-header {
    flex-direction: column;
    align-items: stretch;
  }
  .bottom-life-header .section-link {
    width: fit-content;
  }
  .bottom-life-grid {
    grid-template-columns: 1fr;
  }
  .bottom-life-grid .local-life-card,
  .bottom-life-grid .local-life-card-large {
    grid-column: auto;
    min-height: 188px;
  }
  .bottom-route-feature {
    min-height: 300px;
  }
}
/* end f360 bottom action life route layout */
/* f360 discover header left group alignment */
.section-discover > .container > .section-header {
  width: calc((100% - 24px) * 2 / 3);
}
@media (max-width: 1024px) {
  .section-discover > .container > .section-header {
    width: 100%;
  }
}
/* end f360 discover header left group alignment */
/* f360 unified card hover polish */
@media (hover: hover) and (pointer: fine) {
  :is(
    .discover-card,
    .business-card,
    .community-card,
    .market-product-card,
    .flash-deal-module,
    .preview-recommended-route,
    .preview-card,
    .card-events,
    .place-suggestion-card,
    .feature,
    .local-life-card,
    .stats-bar
  ) {
    transition: transform .26s cubic-bezier(.22, 1, .36, 1),
      box-shadow .26s cubic-bezier(.22, 1, .36, 1),
      border-color .26s ease,
      filter .26s ease;
    will-change: transform;
  }

  :is(
    .discover-card,
    .business-card,
    .community-card,
    .market-product-card,
    .flash-deal-module,
    .preview-recommended-route,
    .preview-card,
    .card-events,
    .place-suggestion-card,
    .feature,
    .local-life-card,
    .stats-bar
  ):hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, .13);
    border-color: rgba(6, 182, 212, .28);
    filter: saturate(1.02);
  }

  :is(
    .discover-card-img,
    .business-card-img,
    .community-img,
    .market-product-img,
    .place-suggestion-media img,
    .route-img,
    .flash-deal-bg
  ) {
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), filter .42s ease;
    will-change: transform;
  }

  :is(.discover-card, .business-card, .community-card, .market-product-card, .place-suggestion-card, .preview-recommended-route):hover
    :is(.discover-card-img, .business-card-img, .community-img, .market-product-img, .place-suggestion-media img, .route-img),
  .flash-deal-module:hover .flash-deal-bg {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.02);
  }

  :is(.discover-card, .local-life-card):hover :is(.discover-card-icon, .local-life-watermark) {
    transform: translateY(-2px) scale(1.06);
  }

  :is(.local-life-card, .feature, .market-product-card, .place-suggestion-card):hover
    :is(.local-life-action i, .white-btn i, .market-product-button i, .place-suggestion-action i) {
    transform: translateX(4px);
  }

  :is(.discover-card, .business-card, .community-card, .market-product-card, .flash-deal-module, .preview-recommended-route, .preview-card, .place-suggestion-card, .feature, .local-life-card):active {
    transform: translateY(-2px) scale(.995);
    transition-duration: .12s;
  }
}

:is(
  a.discover-card,
  .business-card,
  .community-card,
  a.market-product-card,
  a.flash-deal-module,
  a.preview-recommended-route,
  .preview-card,
  .place-suggestion-card,
  a.feature,
  a.local-life-card
):focus-visible {
  outline: 3px solid rgba(6, 182, 212, .32);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  :is(
    .discover-card,
    .business-card,
    .community-card,
    .market-product-card,
    .flash-deal-module,
    .preview-recommended-route,
    .preview-card,
    .card-events,
    .place-suggestion-card,
    .feature,
    .local-life-card,
    .stats-bar,
    .discover-card-img,
    .business-card-img,
    .community-img,
    .market-product-img,
    .place-suggestion-media img,
    .route-img,
    .flash-deal-bg
  ) {
    transition: none !important;
  }
}
/* end f360 unified card hover polish */
/* f360 route boat swap */
.section-discover .discover-card-icon.color-teal {
  background: rgba(13, 148, 136, 0.76);
}
.discover-route-card .discover-card-img {
  object-position: center 52%;
  filter: saturate(1.05) contrast(1.02);
}
.bottom-boat-feature {
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.72), rgba(8, 145, 178, 0.26)),
    url('/theme/fethiye/boat_tour.png') center/cover no-repeat;
}
.bottom-boat-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.34));
  pointer-events: none;
}
.bottom-boat-feature h2,
.bottom-boat-feature p,
.bottom-boat-feature .white-btn,
.bottom-boat-feature .boat-glow {
  position: relative;
  z-index: 1;
}
.bottom-boat-feature .boat-glow {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}
.bottom-boat-feature .white-btn {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 1;
  width: auto;
  min-width: 210px;
  max-width: calc(100% - 68px);
  justify-content: center;
  white-space: nowrap;
}
.bottom-boat-feature:hover {
  color: #fff;
}
.bottom-boat-feature p {
  max-width: 280px;
}
@media (max-width: 760px) {
  .bottom-boat-feature .boat-glow {
    right: 24px;
    top: 24px;
    width: 56px;
    height: 56px;
  }
}
/* end f360 route boat swap */
/* f360 route image and place width alignment */
.main-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.main-grid > .place-suggestion-card {
  width: 100%;
}
@media (max-width: 1120px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}
/* end f360 route image and place width alignment */
/* f360 route card title top alignment */
@media (min-width: 1025px) {
  .section-discover {
    --discover-route-lift: 88px;
  }
  .section-discover .discover-route-card {
    margin-top: calc(-1 * var(--discover-route-lift));
    height: calc(320px + var(--discover-route-lift));
    min-height: calc(320px + var(--discover-route-lift));
  }
}
@media (max-width: 1024px) {
  .section-discover .discover-route-card {
    margin-top: 0;
  }
}
/* end f360 route card title top alignment */
/* f360 side cards size sync */
@media (min-width: 1121px) {
  :root {
    --f360-side-card-height: 640px;
  }
  .main-grid,
  .market-flash-grid,
  .bottom-action-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
  .main-grid > .place-suggestion-card,
  .flash-deal-module,
  .bottom-boat-feature {
    width: 100%;
    height: var(--f360-side-card-height);
    min-height: var(--f360-side-card-height);
    align-self: start;
  }
  .flash-deal-panel {
    min-height: 100%;
  }
}
@media (max-width: 1120px) {
  .main-grid,
  .market-flash-grid,
  .bottom-action-grid {
    grid-template-columns: 1fr;
  }
  .main-grid > .place-suggestion-card,
  .flash-deal-module,
  .bottom-boat-feature {
    width: 100%;
    height: auto;
  }
}
/* end f360 side cards size sync */
/* f360 boat left life height alignment */
@media (min-width: 1121px) {
  .bottom-action-grid {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 2fr);
    align-items: stretch;
  }
  .bottom-action-grid .bottom-boat-feature {
    order: 1;
    align-self: stretch;
    height: auto;
    min-height: 100%;
  }
  .bottom-action-grid .bottom-life-panel {
    order: 2;
    align-self: stretch;
  }
}
@media (max-width: 1120px) {
  .bottom-action-grid .bottom-boat-feature,
  .bottom-action-grid .bottom-life-panel {
    order: initial;
  }
}
/* end f360 boat left life height alignment */
/* f360 flash market height sync */
@media (min-width: 1121px) {
  .market-flash-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .market-flash-grid .local-market-module {
    align-self: stretch;
  }
  .market-flash-grid .flash-deal-module {
    width: 100%;
    height: auto;
    min-height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .market-flash-grid .flash-deal-panel {
    flex: 1;
    min-height: 100%;
  }
}
@media (max-width: 1120px) {
  .market-flash-grid {
    grid-template-columns: 1fr;
  }
  .market-flash-grid .flash-deal-module {
    height: auto;
    min-height: 390px;
  }
}
/* end f360 flash market height sync */
/* f360 events width matches boat */
@media (min-width: 1121px) {
  .modules-top-grid {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 2fr);
  }
}
@media (max-width: 1120px) {
  .modules-top-grid {
    grid-template-columns: 1fr;
  }
}
/* end f360 events width matches boat */
/* f360 place suggestion bottom alignment */
@media (min-width: 1121px) {
  .main-grid {
    align-items: stretch;
  }
  .main-grid > .place-suggestion-card {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }
  .main-grid > .place-suggestion-card .place-suggestion-media {
    min-height: 320px;
    flex: 1 1 320px;
  }
}
@media (max-width: 1120px) {
  .main-grid > .place-suggestion-card {
    height: auto;
    min-height: 0;
  }
}
/* end f360 place suggestion bottom alignment */
/* f360 dropdown hover bridge */
@media (min-width: 901px) {
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 24px;
    display: block;
    pointer-events: auto;
    z-index: 139;
  }

  .nav-dropdown-menu {
    top: calc(100% + 10px);
    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility 0s linear .18s;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
  }

  .nav-dropdown:focus-within .chevron {
    transform: rotate(180deg);
  }

  .topbar.scrolled .nav-dropdown-menu {
    top: calc(100% + 8px);
  }
}
/* end f360 dropdown hover bridge */

/* f360 business directory page */
.business-directory-page {
  min-height: 100vh;
  background: #f4f8fb;
  color: #08204a;
}
.business-directory-page .topbar {
  top: 0 !important;
  left: 50% !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 145, 178, .1) !important;
  background: rgba(255, 255, 255, .97) !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, .08) !important;
}
.business-directory-page .topbar-inner {
  width: min(1600px, calc(100% - 64px)) !important;
  max-width: 1600px !important;
  height: 72px !important;
  padding: 0 !important;
  gap: 30px !important;
}
.business-directory-page .topbar-nav {
  gap: 18px;
}
.business-directory-page .topbar-nav-link,
.business-directory-page .direct-link {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
}
.business-directory-page .business-ai-link {
  gap: 8px;
}
.business-directory-page .business-ai-link em {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: #d7f9ff;
  color: #0891b2;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.business-directory-page .business-nav-active {
  background: linear-gradient(135deg, #10c7d4, #0891d2) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(8, 145, 178, .22);
}
.business-directory-page .topbar-actions {
  gap: 12px;
}
.business-directory-page .business-avatar {
  overflow: hidden;
  padding: 0;
}
.business-directory-page .business-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #13bfd0, #0596c8);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(5, 150, 200, .24);
  white-space: nowrap;
}
.business-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(5, 150, 200, .32);
}
.business-main {
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 8% 14%, rgba(20, 184, 166, .10), transparent 26%),
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, .12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #f3f8fb 46%, #f5f8fb 100%);
}
.business-shell {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
}
.business-hero {
  position: relative;
  min-height: 350px;
  isolation: isolate;
  background: url('/theme/fethiye/fethiye360-reference-hero-bg.webp') center 47% / cover no-repeat;
}
.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 28, 70, .62) 0%, rgba(7, 57, 95, .30) 43%, rgba(7, 57, 95, .18) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 72%, #f4f8fb 100%);
}
.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 58px;
  min-height: 350px;
  padding: 42px 0 58px;
}
.business-hero-copy {
  max-width: 720px;
  color: #fff;
}
.business-hero-copy h1 {
  margin: 0 0 14px;
  max-width: 680px;
  color: #fff;
  font-family: "Baloo 2", var(--font-main);
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(2, 6, 23, .28);
}
.business-hero-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.94);
  font-size: 17px;
  line-height: 1.52;
  font-weight: 650;
  text-shadow: 0 4px 16px rgba(2, 6, 23, .28);
}
.business-search {
  width: min(680px, 100%);
  height: 68px;
  display: grid;
  grid-template-columns: 54px 1fr 118px;
  align-items: center;
  padding: 7px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 42px rgba(2, 6, 23, .22);
}
.business-search i {
  color: #58708d;
  font-size: 19px;
  text-align: center;
}
.business-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #08204a;
  font: 700 15px var(--font-main);
}
.business-search input::placeholder { color: #7d8da5; }
.business-search button {
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #16c4d4, #0894c8);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 148, 200, .24);
}
.business-popular {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.business-popular a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.business-hero-stats {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 22px 54px rgba(2, 6, 23, .20);
  backdrop-filter: blur(18px);
}
.business-stat {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border-radius: 16px;
  color: #08204a;
  text-align: center;
}
.business-stat i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e7fbff;
  color: #08a9c4;
  font-size: 16px;
}
.business-stat:nth-child(2) i { background: #f1ecff; color: #7c3aed; }
.business-stat:nth-child(3) i { background: #eaf6ff; color: #0284c7; }
.business-stat:nth-child(4) i { background: #fff7e6; color: #f59e0b; }
.business-stat strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}
.business-stat span {
  color: #5f7089;
  font-size: 12px;
  font-weight: 800;
}
.business-category-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(10, minmax(92px, 1fr)) 126px;
  align-items: stretch;
  gap: 6px;
  min-height: 98px;
  margin-top: -42px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(218, 233, 243, .92);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .10);
}
.biz-category {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 72px;
  border-radius: 14px;
  color: #08204a;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.biz-category::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #d9e7ef;
}
.biz-category:last-child::after,
.biz-category:nth-last-child(2)::after { display: none; }
.biz-category i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e9fbff;
  color: #08a9c4;
  font-size: 18px;
}
.biz-category:nth-child(2) i { background: #fff0e6; color: #f97316; }
.biz-category:nth-child(3) i { background: #f1ecff; color: #7c3aed; }
.biz-category:nth-child(4) i { background: #e9fbea; color: #22a75a; }
.biz-category:nth-child(5) i { background: #e8f9ff; color: #0891b2; }
.biz-category:nth-child(6) i { background: #eef6ff; color: #0284c7; }
.biz-category:nth-child(7) i { background: #ecfff6; color: #10b981; }
.biz-category:nth-child(8) i { background: #eff6ff; color: #2563eb; }
.biz-category:nth-child(9) i { background: #f4edff; color: #8b5cf6; }
.biz-category:nth-child(10) i { background: #e9fbff; color: #0891b2; }
.biz-category.is-active {
  background: #e9fbff;
  color: #0891b2;
}
.biz-category.is-active::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #08b6d2;
}
.biz-category.all-categories {
  background: #f1fbff;
  color: #0891b2;
  grid-template-columns: 1fr auto;
  padding: 0 12px;
}
.business-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  padding: 28px 0 10px;
  align-items: start;
}
.business-left-flow,
.business-sidebar {
  display: grid;
  gap: 24px;
}
.business-section-head,
.sidebar-card-head,
.list-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.business-section-head h2,
.sidebar-card-head h2,
.list-card-head h3 {
  margin: 0;
  color: #08204a;
  font-family: "Baloo 2", var(--font-main);
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}
.business-section-head p,
.sidebar-card-head p,
.list-card-head p {
  margin: 6px 0 0;
  color: #637896;
  font-size: 14px;
  font-weight: 600;
}
.business-section-head a,
.sidebar-card-head a,
.list-card-head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06a5c8;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.featured-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.directory-business-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #deedf5;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .07);
  transition: transform .26s cubic-bezier(.22, 1, .36, 1), box-shadow .26s ease, border-color .26s ease;
}
.directory-business-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, .36);
  box-shadow: 0 24px 52px rgba(15, 23, 42, .13);
}
.directory-card-media {
  position: relative;
  height: 154px;
  overflow: hidden;
}
.directory-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), filter .42s ease;
}
.directory-business-card:hover .directory-card-media img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.02);
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
}
.card-badge.cyan { background: #12b9cf; }
.card-badge.coral { background: #ff7a59; }
.card-badge.green { background: #22c55e; }
.card-badge.blue { background: #60a5fa; }
.directory-card-body {
  position: relative;
  padding: 14px 16px 18px;
}
.rating-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -28px;
  margin-bottom: 12px;
}
.rating-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #44556e;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}
.rating-line i { color: #f59e0b; }
.business-type {
  color: #687991;
  font-size: 12px;
  font-weight: 700;
}
.directory-card-body h3 {
  margin: 4px 34px 4px 0;
  color: #08204a;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 900;
}
.directory-card-body p {
  margin: 0 0 10px;
  color: #627797;
  font-size: 13px;
  font-weight: 600;
}
.open-line {
  color: #627797;
  font-size: 12px;
  font-weight: 700;
}
.open-line span { color: #0fa968; font-weight: 900; }
.directory-card-body button {
  position: absolute;
  right: 13px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #50637d;
  background: #f8fbfd;
  border: 1px solid #dcebf4;
}
.business-promo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.business-promo {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}
.business-promo h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Baloo 2", var(--font-main);
  font-size: 25px;
  line-height: 1;
}
.business-promo p {
  max-width: 430px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 650;
}
.business-promo span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #0891b2;
  font-size: 13px;
  font-weight: 900;
}
.business-promo > i {
  font-size: 78px;
  color: rgba(255,255,255,.38);
}
.business-promo-teal {
  background: linear-gradient(135deg, rgba(16,184,205,.96), rgba(7,120,167,.92)), url('/theme/fethiye/yamac_restaurant.png') right center / auto 100% no-repeat;
}
.business-promo-warm {
  background: radial-gradient(circle at 84% 20%, rgba(249, 115, 22, .24), transparent 30%), linear-gradient(135deg, #fff4df, #ffdbe5);
}
.business-promo-warm h3 { color: #b45309; }
.business-promo-warm p { color: #9a5a2a; }
.business-promo-warm > i { color: rgba(249, 115, 22, .33); }
.business-list-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.business-list-card,
.business-map-card,
.ai-recommend-card,
.community-reco-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #deedf5;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}
.business-list-card {
  padding: 20px;
}
.business-list-card .list-card-head {
  margin-bottom: 16px;
}
.business-list-card .list-card-head h3 {
  font-size: 20px;
}
.business-list-card .list-card-head a {
  font-size: 12px;
}
.mini-business-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #edf4f8;
}
.mini-business-row img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}
.mini-business-row strong {
  display: block;
  color: #08204a;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 900;
}
.mini-business-row span {
  display: block;
  margin-top: 4px;
  color: #6a7a91;
  font-size: 12px;
  font-weight: 650;
}
.mini-business-row em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.mini-business-row b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #40506a;
  font-size: 13px;
  white-space: nowrap;
}
.mini-business-row b i { color: #f59e0b; }
.business-sidebar {
  position: sticky;
  top: 92px;
}
.business-map-card,
.ai-recommend-card,
.community-reco-card {
  padding: 20px;
}
.business-map-visual {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  margin-top: 16px;
  border-radius: 16px;
  background: #dff6ff;
}
.business-map-visual img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}
.map-pin {
  position: absolute;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  color: #fff;
  box-shadow: 0 12px 22px rgba(15,23,42,.18);
}
.map-pin i { transform: rotate(45deg); }
.pin-food { left: 16%; top: 18%; background: #f97316; }
.pin-hotel { right: 17%; top: 31%; background: #8b5cf6; }
.pin-shop { left: 58%; bottom: 22%; background: #10b981; }
.map-search-chip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #0891b2;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
}
.ai-recommend-card {
  background: linear-gradient(135deg, #f8fbff, #e9f7ff);
}
.sidebar-card-head h2 em {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #e7f0ff;
  color: #2563eb;
  font-size: 11px;
  font-style: normal;
}
.ai-business-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ai-business-row a {
  display: grid;
  gap: 8px;
  color: #08204a;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 900;
}
.ai-business-row img {
  width: 100%;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}
.community-reco-body {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.community-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.community-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.community-user strong {
  display: block;
  color: #08204a;
  font-size: 14px;
  font-weight: 900;
}
.community-user span {
  color: #708098;
  font-size: 12px;
  font-weight: 650;
}
.community-reco-body p {
  margin: 0;
  color: #475a75;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}
.community-reco-bottom {
  display: grid;
  grid-template-columns: 1fr 128px;
  align-items: center;
  gap: 16px;
}
.community-reco-bottom span {
  color: #08204a;
  font-weight: 900;
}
.community-reco-bottom i { color: #f59e0b; }
.community-reco-bottom img {
  width: 128px;
  height: 86px;
  border-radius: 14px;
  object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {
  .biz-category,
  .business-promo,
  .business-list-card,
  .business-map-card,
  .ai-recommend-card,
  .community-reco-card,
  .mini-business-row,
  .ai-business-row a {
    transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease, border-color .24s ease, background .24s ease;
  }
  .biz-category:hover,
  .business-promo:hover,
  .business-list-card:hover,
  .business-map-card:hover,
  .ai-recommend-card:hover,
  .community-reco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, .11);
    border-color: rgba(6, 182, 212, .28);
  }
  .mini-business-row:hover,
  .ai-business-row a:hover {
    transform: translateX(4px);
  }
}
@media (max-width: 1320px) {
  .business-directory-page .topbar-inner,
  .business-shell {
    width: min(1280px, calc(100% - 48px)) !important;
  }
  .business-directory-page .topbar-nav { gap: 8px; }
  .business-directory-page .topbar-nav-link,
  .business-directory-page .direct-link { padding: 0 10px; font-size: 13px; }
  .business-add-btn { padding: 0 15px; }
  .business-hero-grid { grid-template-columns: minmax(0, 1fr) 320px; }
  .business-category-strip { grid-template-columns: repeat(5, minmax(96px, 1fr)); }
  .business-content-grid { grid-template-columns: 1fr; }
  .business-sidebar { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
}
@media (max-width: 980px) {
  .business-directory-page .topbar-actions .business-add-btn { display: none; }
  .business-hero-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 54px; }
  .business-hero-stats { max-width: 420px; }
  .featured-business-grid,
  .business-list-panels,
  .business-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-promo-grid { grid-template-columns: 1fr; }
  .business-map-card { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .business-directory-page .topbar-inner,
  .business-shell {
    width: calc(100% - 32px) !important;
  }
  .business-main { padding-top: 64px; padding-bottom: 84px; }
  .business-directory-page .topbar-inner { height: 64px !important; }
  .business-directory-page .topbar-actions .topbar-round-btn:not(.business-avatar) { display: none; }
  .business-hero { min-height: auto; }
  .business-hero-grid { min-height: auto; padding: 42px 0 82px; }
  .business-hero-copy h1 { font-size: 40px; }
  .business-search { grid-template-columns: 44px 1fr 82px; height: 58px; border-radius: 16px; }
  .business-search button { height: 44px; }
  .business-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .business-category-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -54px; }
  .featured-business-grid,
  .business-list-panels,
  .business-sidebar { grid-template-columns: 1fr; }
  .business-section-head,
  .sidebar-card-head,
  .list-card-head { align-items: flex-start; flex-direction: column; }
  .ai-business-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .community-reco-bottom { grid-template-columns: 1fr; }
  .community-reco-bottom img { width: 100%; height: 150px; }
  .mini-business-row { grid-template-columns: 54px minmax(0, 1fr) auto; }
  .mini-business-row b { grid-column: 2 / -1; }
}
@media (max-width: 520px) {
  .business-popular strong { width: 100%; }
  .business-hero-stats { grid-template-columns: 1fr; }
  .business-stat { min-height: 88px; }
}
/* end f360 business directory page */
/* f360 business width and menu sync */
.business-directory-page .topbar {
  top: 24px !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 21px !important;
  border: 1px solid transparent !important;
  background: #fff !important;
  box-shadow: none !important;
}
.business-directory-page .topbar.scrolled {
  top: 0 !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.business-directory-page .topbar-inner,
.business-directory-page .topbar.scrolled .topbar-inner {
  width: 100% !important;
  max-width: 1232px !important;
  height: 76px !important;
  margin: 0 auto !important;
  padding: 0 34px !important;
  gap: 24px !important;
}
.business-directory-page .topbar-nav {
  gap: 8px !important;
  min-width: 0;
}
.business-directory-page .topbar-nav .topbar-nav-link,
.business-directory-page .topbar-nav .nav-trigger,
.business-directory-page .topbar-nav .direct-link,
.business-directory-page .topbar-nav .emergency-link {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0;
}
.business-directory-page .topbar-nav .topbar-nav-link > span,
.business-directory-page .topbar-nav .nav-trigger > span,
.business-directory-page .topbar-nav .direct-link > span,
.business-directory-page .topbar-nav .emergency-link > span {
  font-weight: 400 !important;
}
.business-directory-page .topbar-nav .emergency-link {
  color: #fff !important;
  background: linear-gradient(135deg, #E8734A, #d95f38) !important;
  box-shadow: 0 12px 22px rgba(232, 115, 74, .22) !important;
}
.business-directory-page .business-main {
  padding-top: 0 !important;
}
.business-directory-page .business-shell {
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
}
.business-directory-page .business-hero {
  min-height: 460px;
  padding-top: 108px;
}
.business-directory-page .business-hero-grid {
  min-height: 352px;
  padding: 42px 0 58px;
}
.business-directory-page .business-content-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
}
@media (max-width: 1120px) {
  .business-directory-page .topbar,
  .business-directory-page .topbar.scrolled,
  .business-directory-page .business-shell {
    width: calc(100% - 48px) !important;
  }
  .business-directory-page .topbar-inner,
  .business-directory-page .topbar.scrolled .topbar-inner {
    gap: 16px !important;
    padding: 0 22px !important;
  }
}
@media (max-width: 760px) {
  .business-directory-page .topbar,
  .business-directory-page .topbar.scrolled,
  .business-directory-page .business-shell {
    width: calc(100% - 32px) !important;
  }
  .business-directory-page .topbar-inner,
  .business-directory-page .topbar.scrolled .topbar-inner {
    height: 64px !important;
    padding: 0 20px !important;
  }
  .business-directory-page .business-hero {
    padding-top: 88px;
  }
}
/* end f360 business width and menu sync */
/* f360 filled view-all action buttons */
.section-header .section-link,
.local-market-link,
.business-section-head > a,
.list-card-head > a,
.sidebar-card-head > a {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #078aa6 !important;
  background: linear-gradient(135deg, rgba(232, 251, 255, .98), rgba(238, 247, 255, .98));
  border: 1px solid rgba(6, 182, 212, .22);
  box-shadow: 0 10px 22px rgba(8, 145, 178, .09);
  font-size: 13px;
  font-weight: 800 !important;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1),
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;
}
.section-header .section-link i,
.local-market-link i,
.business-section-head > a i,
.list-card-head > a i,
.sidebar-card-head > a i {
  font-size: 12px;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}
.section-header .section-link:hover,
.local-market-link:hover,
.business-section-head > a:hover,
.list-card-head > a:hover,
.sidebar-card-head > a:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #12bfd0, #078fc4);
  border-color: rgba(6, 182, 212, .42);
  box-shadow: 0 15px 28px rgba(8, 145, 178, .20);
  transform: translateY(-2px);
}
.section-header .section-link:hover i,
.local-market-link:hover i,
.business-section-head > a:hover i,
.list-card-head > a:hover i,
.sidebar-card-head > a:hover i {
  transform: translateX(3px);
}
.section-header .section-link:focus-visible,
.local-market-link:focus-visible,
.business-section-head > a:focus-visible,
.list-card-head > a:focus-visible,
.sidebar-card-head > a:focus-visible {
  outline: 3px solid rgba(6, 182, 212, .30);
  outline-offset: 3px;
}
.card-events .section-link,
.business-list-card .list-card-head a {
  min-height: 36px;
  padding: 0 13px;
  font-size: 12px;
}
@media (max-width: 640px) {
  .section-header .section-link,
  .local-market-link,
  .business-section-head > a,
  .list-card-head > a,
  .sidebar-card-head > a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }
}
/* end f360 filled view-all action buttons */

/* f360 home guide places discover */
.section-guide-places .guide-places-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, .92fr);
  gap: var(--f360-gap-md, 24px);
  align-items: stretch;
}
.section-guide-places .guide-places-wrapper {
  min-width: 0;
  width: 100%;
  position: relative;
  overflow: visible;
}
.section-guide-places .guide-places-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--f360-gap-md, 24px) * 3)) / 4);
  grid-template-columns: none;
  gap: var(--f360-gap-md, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
}
.section-guide-places .guide-places-carousel::-webkit-scrollbar {
  display: none;
}
.section-guide-places .discover-card {
  min-height: 0;
  height: 300px;
  border-radius: 22px;
  scroll-snap-align: start;
}
.section-guide-places .discover-card::before {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 34%, rgba(2, 14, 33, .82) 100%);
}
.section-guide-places .discover-card-title {
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
}
.section-guide-places .discover-card-desc {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
}
.section-guide-places .discover-card-icon.color-orange { background: rgba(249, 115, 22, .76); }
.section-guide-places .discover-card-icon.color-indigo { background: rgba(99, 102, 241, .76); }
.section-guide-places .carousel-nav-btn.next {
  right: -18px;
}
.section-guide-places .carousel-nav-btn.prev {
  left: -18px;
}
.section-guide-places .guide-feature-card {
  width: 100%;
  height: 300px;
  min-height: 300px;
  align-self: stretch;
}
.section-guide-places .guide-feature-card .discover-card-img {
  object-position: center;
}
.section-guide-places .guide-feature-card .discover-card-title {
  font-size: 25px;
}
.section-guide-places .guide-feature-card .discover-card-desc {
  max-width: 260px;
}
.section-guide-places .guide-feature-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #075985;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}
@media (max-width: 1120px) {
  .section-guide-places .guide-places-grid {
    grid-template-columns: 1fr;
  }
  .section-guide-places .guide-places-carousel {
    grid-auto-columns: calc((100% - (var(--f360-gap-md, 24px) * 2)) / 3);
  }
  .section-guide-places .guide-feature-card {
    height: 280px;
    min-height: 280px;
  }
}
@media (max-width: 760px) {
  .section-guide-places .guide-places-carousel {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }
  .section-guide-places .discover-card,
  .section-guide-places .guide-feature-card {
    height: 250px;
    min-height: 250px;
  }
}
@media (max-width: 520px) {
  .section-guide-places .guide-places-carousel {
    grid-auto-columns: 100%;
  }
  .section-guide-places .discover-card,
  .section-guide-places .guide-feature-card {
    height: 260px;
    min-height: 260px;
  }
}
/* end f360 home guide places discover */
/* f360 guide route card bottom alignment */
@media (min-width: 1121px) {
  .section-guide-places > .container > .section-header {
    width: calc((100% - var(--f360-gap-md, 24px)) * 0.6849315) !important;
  }
  .section-guide-places .discover-route-card {
    height: calc(300px + var(--discover-route-lift, 88px));
    min-height: calc(300px + var(--discover-route-lift, 88px));
  }
}
@media (max-width: 1120px) {
  .section-guide-places > .container > .section-header {
    width: 100% !important;
  }
}
/* end f360 guide route card bottom alignment */
/* f360 guide cards taller */
.section-guide-places {
  --f360-guide-card-height: 360px;
}
.section-guide-places .discover-card,
.section-guide-places .guide-feature-card {
  height: var(--f360-guide-card-height);
  min-height: var(--f360-guide-card-height);
}
@media (min-width: 1121px) {
  .section-guide-places .discover-route-card {
    height: calc(var(--f360-guide-card-height) + var(--discover-route-lift, 88px));
    min-height: calc(var(--f360-guide-card-height) + var(--discover-route-lift, 88px));
  }
}
@media (max-width: 1120px) {
  .section-guide-places {
    --f360-guide-card-height: 330px;
  }
  .section-guide-places .discover-route-card {
    margin-top: 0;
    height: var(--f360-guide-card-height);
    min-height: var(--f360-guide-card-height);
  }
}
@media (max-width: 760px) {
  .section-guide-places {
    --f360-guide-card-height: 300px;
  }
}
@media (max-width: 520px) {
  .section-guide-places {
    --f360-guide-card-height: 300px;
  }
}
/* end f360 guide cards taller */
/* f360 local market proportional image hover */
.market-product-media {
  width: 100%;
  aspect-ratio: 2.04 / 1;
  overflow: hidden;
  border-radius: 17px;
  margin-bottom: 14px;
  background: #e2e8f0;
  transform: translateZ(0);
}
.market-product-media .market-product-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
  margin-bottom: 0;
  transform-origin: center center;
}
@media (hover: hover) and (pointer: fine) {
  .market-product-card:hover .market-product-media .market-product-img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
  }
}
/* end f360 local market proportional image hover */
/* f360 guide hero business background sync */
.guide-page .topbar {
  top: 24px !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 21px !important;
  border: 1px solid transparent !important;
  background: #fff !important;
  box-shadow: none !important;
}
.guide-page .topbar.scrolled {
  top: 0 !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.guide-page .topbar-inner,
.guide-page .topbar.scrolled .topbar-inner {
  width: 100% !important;
  max-width: 1340px !important;
  height: 76px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  gap: 24px !important;
}
.guide-page .topbar-nav {
  gap: 8px !important;
  min-width: 0;
}
.guide-page .topbar-nav .topbar-nav-link,
.guide-page .topbar-nav .nav-trigger,
.guide-page .topbar-nav .direct-link,
.guide-page .topbar-nav .emergency-link {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0;
}
.guide-page .topbar-nav .topbar-nav-link > span,
.guide-page .topbar-nav .nav-trigger > span,
.guide-page .topbar-nav .direct-link > span,
.guide-page .topbar-nav .emergency-link > span {
  font-weight: 400 !important;
}
.guide-page .topbar-nav .emergency-link {
  color: #fff !important;
  background: linear-gradient(135deg, #E8734A, #d95f38) !important;
  box-shadow: 0 12px 22px rgba(232, 115, 74, .22) !important;
}
.guide-main {
  padding-top: 0 !important;
  background:
    radial-gradient(circle at 8% 14%, rgba(20, 184, 166, .10), transparent 26%),
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, .12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #f3f8fb 46%, #f5f8fb 100%) !important;
}
.guide-main::before {
  content: none !important;
  display: none !important;
}
.guide-hero-section {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  padding: 108px 0 34px !important;
  overflow: hidden;
  background: url('/theme/fethiye/fethiye360-reference-hero-bg.webp') center 47% / cover no-repeat !important;
}
.guide-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 28, 70, .66) 0%, rgba(7, 57, 95, .34) 45%, rgba(7, 57, 95, .18) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 72%, #f4f8fb 100%);
}
.guide-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 352px;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr) !important;
  align-items: center;
  gap: 48px !important;
  padding: 42px 0 58px;
}
.guide-hero-copy {
  color: #fff;
  max-width: 720px;
}
.guide-hero-copy h1 {
  margin: 0 0 14px !important;
  max-width: 700px;
  color: #fff !important;
  font-family: "Baloo 2", var(--font-main);
  font-size: clamp(42px, 4.3vw, 68px) !important;
  line-height: .95;
  font-weight: 800 !important;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(2, 6, 23, .30);
}
.guide-hero-copy h1 span {
  color: #20d8ec !important;
}
.guide-hero-copy p {
  max-width: 720px;
  margin: 0 0 22px !important;
  color: rgba(255,255,255,.94) !important;
  font-size: 17px !important;
  line-height: 1.52;
  font-weight: 650;
  text-shadow: 0 4px 16px rgba(2, 6, 23, .28);
}
.guide-search {
  width: min(680px, 100%);
  max-width: 680px;
  min-height: 68px;
  grid-template-columns: 54px minmax(0, 1fr) 48px 96px;
  gap: 0;
  padding: 7px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 48px rgba(2, 20, 45, .22);
}
.guide-search > i {
  justify-self: center;
  font-size: 18px;
  color: #64748b;
}
.guide-locate {
  width: 44px;
  height: 44px;
  color: #0f7490;
  background: #eef8ff;
}
.guide-search-btn {
  height: 52px;
  border-radius: 14px;
}
.guide-visual-card {
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 24px 58px rgba(2, 20, 45, .22);
}
.guide-category-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px !important;
  border-radius: 18px;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(218, 233, 243, .92);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .10);
}
@media (max-width: 1120px) {
  .guide-page .topbar,
  .guide-page .topbar.scrolled,
  .guide-shell {
    width: calc(100% - 48px) !important;
  }
  .guide-page .topbar-inner,
  .guide-page .topbar.scrolled .topbar-inner {
    gap: 16px !important;
    padding: 0 20px !important;
  }
  .guide-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-top: 54px;
  }
  .guide-visual-card {
    max-width: 760px;
  }
}
@media (max-width: 760px) {
  .guide-page .topbar,
  .guide-page .topbar.scrolled,
  .guide-shell {
    width: calc(100% - 32px) !important;
  }
  .guide-page .topbar-inner,
  .guide-page .topbar.scrolled .topbar-inner {
    height: 64px !important;
    padding: 0 16px !important;
  }
  .guide-hero-section {
    min-height: auto;
    padding-top: 88px !important;
  }
  .guide-hero-grid {
    min-height: auto;
    padding: 42px 0 82px;
  }
  .guide-hero-copy h1 {
    font-size: 40px !important;
  }
  .guide-search {
    grid-template-columns: 44px 1fr 44px;
    min-height: 58px;
    border-radius: 16px;
  }
  .guide-search-btn {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    margin-top: 7px;
  }
  .guide-category-strip {
    margin-top: -54px !important;
  }
}
/* end f360 guide hero business background sync */
/* f360 guide hero vertical stats card */
.guide-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px) !important;
}
.guide-visual-card {
  width: min(390px, 100%);
  min-height: 0 !important;
  align-self: center;
  justify-self: end;
  padding: 18px;
  border-radius: 24px;
  overflow: visible;
  background: rgba(255, 255, 255, .90) !important;
  border: 1px solid rgba(255,255,255,.48) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 58px rgba(2, 20, 45, .24), inset 0 1px 0 rgba(255,255,255,.70) !important;
}
.guide-visual-img {
  display: none !important;
}
.guide-visual-card::after {
  content: none !important;
  display: none !important;
}
.guide-visual-stats {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.guide-visual-stats div {
  min-height: 74px !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center !important;
  place-items: initial !important;
  padding: 13px 15px;
  border-radius: 16px;
  color: #0b244a;
  text-align: left !important;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(8, 145, 178, .10);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
}
.guide-visual-stats div + div {
  border-left: 1px solid rgba(8, 145, 178, .10) !important;
}
.guide-visual-stats i {
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #12b8c9 !important;
  background: #e8fbff;
  font-size: 20px !important;
}
.guide-visual-stats strong {
  align-self: end;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  color: #0b244a;
}
.guide-visual-stats span {
  align-self: start;
  color: #5e718c !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
@media (max-width: 1120px) {
  .guide-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .guide-visual-card {
    justify-self: start;
    width: min(520px, 100%);
  }
}
@media (max-width: 640px) {
  .guide-visual-card {
    width: 100%;
    padding: 14px;
    border-radius: 20px;
  }
  .guide-visual-stats div {
    min-height: 68px !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    padding: 11px 12px;
  }
  .guide-visual-stats i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px !important;
  }
  .guide-visual-stats strong {
    font-size: 21px !important;
  }
}
/* end f360 guide hero vertical stats card */
/* f360 guide info narrow icon colors */
.guide-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px) !important;
}
.guide-visual-card {
  width: min(290px, 100%) !important;
  padding: 18px !important;
}
.guide-visual-stats {
  gap: 10px !important;
}
.guide-visual-stats div {
  min-height: 74px !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  column-gap: 14px !important;
  padding: 13px 15px !important;
}
.guide-visual-stats i {
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  font-size: 20px !important;
}
.guide-visual-stats strong {
  font-size: 24px !important;
  font-weight: 800 !important;
}
.guide-visual-stats span {
  font-weight: 400 !important;
}
.guide-visual-stats div:nth-child(1) i {
  color: #0ea5e9 !important;
  background: #e7f7ff !important;
}
.guide-visual-stats div:nth-child(2) i {
  color: #8b5cf6 !important;
  background: #f4efff !important;
}
.guide-visual-stats div:nth-child(3) i {
  color: #10b981 !important;
  background: #ecfdf5 !important;
}
.guide-visual-stats div:nth-child(4) i {
  color: #12b8c9 !important;
  background: #e8fbff !important;
}
@media (max-width: 1120px) {
  .guide-visual-card {
    width: min(290px, 100%) !important;
  }
}
@media (max-width: 640px) {
  .guide-visual-card {
    width: 100% !important;
  }
}
/* end f360 guide info narrow icon colors */
/* f360 business hero narrow vertical stats */
.business-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px) !important;
}
.business-hero-stats {
  width: min(290px, 100%) !important;
  justify-self: end !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 18px !important;
}
.business-stat {
  min-height: 74px !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-content: center !important;
  place-items: initial !important;
  column-gap: 14px !important;
  row-gap: 3px !important;
  padding: 13px 15px !important;
  text-align: left !important;
}
.business-stat i {
  grid-row: 1 / 3 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  font-size: 20px !important;
}
.business-stat strong {
  align-self: end !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
.business-stat span {
  align-self: start !important;
  font-weight: 400 !important;
  font-size: 13px !important;
}
.business-stat:nth-child(1) i {
  color: #0ea5e9 !important;
  background: #e7f7ff !important;
}
.business-stat:nth-child(2) i {
  color: #8b5cf6 !important;
  background: #f4efff !important;
}
.business-stat:nth-child(3) i {
  color: #10b981 !important;
  background: #ecfdf5 !important;
}
.business-stat:nth-child(4) i {
  color: #f59e0b !important;
  background: #fff7e6 !important;
}
@media (max-width: 980px) {
  .business-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .business-hero-stats {
    justify-self: start !important;
    width: min(290px, 100%) !important;
    max-width: 290px !important;
  }
}
@media (max-width: 520px) {
  .business-hero-stats {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* end f360 business hero narrow vertical stats */
/* f360 guide search and category polish */
.guide-search {
  grid-template-columns: 54px minmax(0, 1fr) 96px !important;
}
.guide-locate {
  display: none !important;
}
.guide-category-strip {
  gap: 6px !important;
  min-height: 98px !important;
  padding: 14px !important;
}
.guide-category {
  position: relative !important;
  min-height: 72px !important;
  border-radius: 14px !important;
  border: 1px solid transparent !important;
  align-content: center !important;
  gap: 8px !important;
  color: #08204a !important;
  text-align: center !important;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease !important;
}
.guide-category::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #d9e7ef;
  pointer-events: none;
}
.guide-category:last-child::after {
  display: none;
}
.guide-category i {
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  font-size: 18px !important;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), background .24s ease, color .24s ease !important;
}
.guide-category.active {
  background: #e9fbff !important;
  color: #0891b2 !important;
}
.guide-category.active::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #08b6d2;
}
@media (hover: hover) and (pointer: fine) {
  .guide-category:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 52px rgba(15, 23, 42, .11) !important;
    border-color: rgba(6, 182, 212, .28) !important;
    background: #ffffff !important;
  }
  .guide-category:hover i {
    transform: translateY(-1px) scale(1.04);
  }
  .guide-category.active:hover {
    background: #e9fbff !important;
  }
}
@media (max-width: 760px) {
  .guide-search {
    grid-template-columns: 44px minmax(0, 1fr) 82px !important;
  }
  .guide-search-btn {
    grid-column: auto !important;
    width: auto !important;
    margin-top: 0 !important;
  }
}
/* end f360 guide search and category polish */
/* f360 category hover soft no frame */
@media (hover: hover) and (pointer: fine) {
  .guide-category:hover,
  .biz-category:hover {
    border-color: transparent !important;
    box-shadow: none !important;
  }
}
/* end f360 category hover soft no frame */
/* f360 guide active category bg clear */
.guide-category.active {
  background: transparent !important;
  box-shadow: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .guide-category.active:hover {
    background: transparent !important;
  }
}
/* end f360 guide active category bg clear */
/* f360 business active category and stats sync */
.biz-category.is-active {
  background: transparent !important;
  box-shadow: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .biz-category.is-active:hover {
    background: transparent !important;
  }
}
.business-stat:nth-child(4) i {
  color: #12b8c9 !important;
  background: #e8fbff !important;
}
/* end f360 business active category and stats sync */
/* f360 business stats visual match */
.business-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px) !important;
}
.business-hero-stats {
  align-self: center !important;
  justify-self: end !important;
  width: min(290px, 100%) !important;
  max-width: 290px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  overflow: visible !important;
  background: rgba(255, 255, 255, .90) !important;
  border: 1px solid rgba(255,255,255,.48) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 24px 58px rgba(2, 20, 45, .24), inset 0 1px 0 rgba(255,255,255,.70) !important;
}
.business-stat {
  min-height: 74px !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  align-content: center !important;
  place-items: initial !important;
  column-gap: 14px !important;
  row-gap: 2px !important;
  padding: 13px 15px !important;
  border-radius: 16px !important;
  color: #0b244a !important;
  text-align: left !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(8, 145, 178, .10) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06) !important;
}
.business-stat + .business-stat {
  border-left: 1px solid rgba(8, 145, 178, .10) !important;
}
.business-stat i {
  grid-row: 1 / 3 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  font-size: 20px !important;
}
.business-stat strong {
  align-self: end !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  color: #0b244a !important;
}
.business-stat span {
  align-self: start !important;
  color: #5e718c !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}
.business-stat:nth-child(1) i {
  color: #0ea5e9 !important;
  background: #e7f7ff !important;
}
.business-stat:nth-child(2) i {
  color: #8b5cf6 !important;
  background: #f4efff !important;
}
.business-stat:nth-child(3) i {
  color: #10b981 !important;
  background: #ecfdf5 !important;
}
.business-stat:nth-child(4) i {
  color: #12b8c9 !important;
  background: #e8fbff !important;
}
@media (max-width: 980px) {
  .business-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .business-hero-stats {
    justify-self: start !important;
  }
}
@media (max-width: 520px) {
  .business-hero-stats {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* end f360 business stats visual match */
/* f360 business guide layout sync */
.business-page-header {
  display: contents !important;
}
.business-directory-page .topbar {
  top: 24px !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 21px !important;
  border: 1px solid transparent !important;
  background: #fff !important;
  box-shadow: none !important;
}
.business-directory-page .topbar.scrolled {
  top: 0 !important;
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.business-directory-page .topbar-inner,
.business-directory-page .topbar.scrolled .topbar-inner {
  width: 100% !important;
  max-width: 1340px !important;
  height: 76px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  gap: 24px !important;
}
.business-directory-page .topbar-nav {
  gap: 8px !important;
  min-width: 0 !important;
}
.business-directory-page .topbar-nav .topbar-nav-link,
.business-directory-page .topbar-nav .nav-trigger,
.business-directory-page .topbar-nav .direct-link,
.business-directory-page .topbar-nav .emergency-link {
  min-height: 42px !important;
  padding: 0 12px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.business-directory-page .topbar-nav .topbar-nav-link > span,
.business-directory-page .topbar-nav .nav-trigger > span,
.business-directory-page .topbar-nav .direct-link > span,
.business-directory-page .topbar-nav .emergency-link > span {
  font-weight: 400 !important;
}
.business-directory-page .topbar-nav .emergency-link {
  color: #fff !important;
  background: linear-gradient(135deg, #E8734A, #d95f38) !important;
  box-shadow: 0 12px 22px rgba(232, 115, 74, .22) !important;
}
.business-directory-page {
  --page-bg: #f5f8fb;
}
.business-directory-page .business-main {
  padding-top: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 14%, rgba(20, 184, 166, .10), transparent 26%),
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, .12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #f3f8fb 46%, #f5f8fb 100%) !important;
}
.business-directory-page .business-shell {
  width: min(calc(100% - (var(--f360-page-gutter) * 2)), var(--f360-page-max)) !important;
  max-width: var(--f360-page-max) !important;
  margin-inline: auto !important;
}
.business-directory-page .business-hero {
  position: relative !important;
  isolation: isolate !important;
  min-height: 460px !important;
  padding: 108px 0 34px !important;
  overflow: hidden !important;
  background: url('/theme/fethiye/fethiye360-reference-hero-bg.webp') center 47% / cover no-repeat !important;
}
.business-directory-page .business-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(7, 28, 70, .66) 0%, rgba(7, 57, 95, .34) 45%, rgba(7, 57, 95, .18) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 72%, #f4f8fb 100%) !important;
}
.business-directory-page .business-hero-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  min-height: 352px !important;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px) !important;
  align-items: center !important;
  gap: 48px !important;
  padding: 42px 0 58px !important;
}
.business-directory-page .business-hero-copy {
  max-width: 720px !important;
  color: #fff !important;
}
.business-directory-page .business-hero-copy h1 {
  margin: 0 0 14px !important;
  max-width: 700px !important;
  color: #fff !important;
  font-family: "Baloo 2", var(--font-main) !important;
  font-size: clamp(42px, 4.3vw, 68px) !important;
  line-height: .95 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 8px 24px rgba(2, 6, 23, .30) !important;
}
.business-directory-page .business-hero-copy p {
  max-width: 720px !important;
  margin: 0 0 22px !important;
  color: rgba(255,255,255,.94) !important;
  font-size: 17px !important;
  line-height: 1.52 !important;
  font-weight: 650 !important;
  text-shadow: 0 4px 16px rgba(2, 6, 23, .28) !important;
}
.business-directory-page .business-search {
  width: min(680px, 100%) !important;
  max-width: 680px !important;
  height: auto !important;
  min-height: 68px !important;
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) 96px !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 7px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 20px 48px rgba(2, 20, 45, .22) !important;
}
.business-directory-page .business-search i {
  justify-self: center !important;
  color: #64748b !important;
  font-size: 18px !important;
  text-align: center !important;
}
.business-directory-page .business-search input {
  min-width: 0 !important;
  width: 100% !important;
  height: 52px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #0b244a !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.business-directory-page .business-search input::placeholder {
  color: #7a8da8 !important;
}
.business-directory-page .business-search button {
  height: 52px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}
.business-directory-page .business-popular {
  display: none !important;
}
.business-directory-page .business-category-strip {
  position: relative !important;
  z-index: 5 !important;
  display: grid !important;
  grid-template-columns: repeat(10, minmax(0, 1fr)) 126px !important;
  align-items: stretch !important;
  gap: 6px !important;
  min-height: 98px !important;
  margin-top: -42px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(218, 233, 243, .92) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .10) !important;
}
.business-directory-page .biz-category {
  position: relative !important;
  min-height: 72px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 8px !important;
  border-radius: 14px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #08204a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-align: center !important;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), border-color .24s ease, background .24s ease, color .24s ease !important;
}
.business-directory-page .biz-category::after {
  content: "" !important;
  position: absolute !important;
  right: -4px !important;
  top: 18px !important;
  bottom: 18px !important;
  width: 1px !important;
  display: block !important;
  background: #d9e7ef !important;
  pointer-events: none !important;
}
.business-directory-page .biz-category:last-child::after {
  display: none !important;
}
.business-directory-page .biz-category:nth-last-child(2)::after {
  display: block !important;
}
.business-directory-page .biz-category i {
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  font-size: 18px !important;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), background .24s ease, color .24s ease !important;
}
.business-directory-page .biz-category.all-categories {
  grid-template-columns: 1fr auto !important;
  padding: 0 12px !important;
  color: #0891b2 !important;
  background: #f1fbff !important;
}
.business-directory-page .biz-category.is-active {
  background: transparent !important;
  color: #0891b2 !important;
  box-shadow: none !important;
}
.business-directory-page .biz-category.is-active::before {
  content: "" !important;
  position: absolute !important;
  left: 22px !important;
  right: 22px !important;
  bottom: 0 !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #08b6d2 !important;
}
@media (hover: hover) and (pointer: fine) {
  .business-directory-page .biz-category:hover {
    transform: translateY(-4px) !important;
    border-color: transparent !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  .business-directory-page .biz-category:hover i {
    transform: translateY(-1px) scale(1.04) !important;
  }
}
@media (max-width: 1120px) {
  .business-directory-page .topbar,
  .business-directory-page .topbar.scrolled,
  .business-directory-page .business-shell {
    width: calc(100% - 48px) !important;
  }
  .business-directory-page .topbar-inner,
  .business-directory-page .topbar.scrolled .topbar-inner {
    gap: 16px !important;
    padding: 0 20px !important;
  }
  .business-directory-page .business-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-top: 54px !important;
  }
  .business-directory-page .business-hero-stats {
    justify-self: start !important;
  }
  .business-directory-page .business-category-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .business-directory-page .topbar,
  .business-directory-page .topbar.scrolled,
  .business-directory-page .business-shell {
    width: calc(100% - 32px) !important;
  }
  .business-directory-page .topbar-inner,
  .business-directory-page .topbar.scrolled .topbar-inner {
    height: 64px !important;
    padding: 0 16px !important;
  }
  .business-directory-page .business-hero {
    min-height: auto !important;
    padding-top: 88px !important;
  }
  .business-directory-page .business-hero-grid {
    min-height: auto !important;
    padding: 42px 0 82px !important;
  }
  .business-directory-page .business-hero-copy h1 {
    font-size: 40px !important;
  }
  .business-directory-page .business-search {
    grid-template-columns: 44px minmax(0, 1fr) 82px !important;
    min-height: 58px !important;
    border-radius: 16px !important;
  }
  .business-directory-page .business-search input,
  .business-directory-page .business-search button {
    height: 44px !important;
  }
  .business-directory-page .business-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: -54px !important;
  }
}
/* end f360 business guide layout sync */

.guide-ad-banner {
  grid-column: span 3;
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 160px;
  background: linear-gradient(90deg, #0e7490 0%, #155e75 100%);
  border: 1px solid rgba(8, 145, 178, 0.15);
  box-shadow: 0 10px 25px rgba(15, 91, 129, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.guide-ad-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 91, 129, 0.12);
  border-color: rgba(6, 182, 212, 0.35);
}
.guide-ad-banner:hover span.btn-cta {
  background: #0f766e !important;
  color: #fff !important;
}
@media (max-width: 900px) {
  .guide-ad-banner {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .guide-ad-banner {
    grid-column: span 1;
    height: auto !important;
    padding: 24px 20px !important;
  }
  .guide-ad-banner-inner {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .guide-ad-banner-inner h2 {
    font-size: 20px !important;
  }
}

.guide-card-media span.cat-koy-plaj { background: #0ea5e9 !important; }
.guide-card-media span.cat-mesire-alani { background: #10b981 !important; }
.guide-card-media span.cat-milli-park { background: #15803d !important; }
.guide-card-media span.cat-muze { background: #8b5cf6 !important; }
.guide-card-media span.cat-seyir-terasi { background: #6366f1 !important; }
.guide-card-media span.cat-tarihi-eser { background: #f97316 !important; }
.guide-card-media span.cat-selale { background: #06b6d4 !important; }

/* Next.js fethiye prototype icon bridge */
.fethiye-prototype-home i { display: inline-flex; align-items: center; justify-content: center; line-height: 1; font-style: normal; }
.fethiye-prototype-home i svg { width: 1em; height: 1em; display: block; stroke: currentColor; }
.fethiye-prototype-home .topbar-nav-link i:first-child svg,
.fethiye-prototype-home .nav-dropdown-link i svg,
.fethiye-prototype-home .category-icon-box i svg,
.fethiye-prototype-home .discover-card-icon i svg,
.fethiye-prototype-home .stat-icon-box i svg,
.fethiye-prototype-home .local-life-watermark svg { width: 1em; height: 1em; }
body.theme-fethiye:has(.fethiye-prototype-home) { background: #f3f4f6 !important; }
body.theme-fethiye:has(.fethiye-prototype-home) > .fixed.inset-0 { display: none !important; }
body.theme-fethiye:has(.fethiye-prototype-home) .f360-ai-fab-wrap { display: none !important; }
@media (min-width: 901px) { body.theme-fethiye:has(.fethiye-prototype-home) { padding-bottom: 0 !important; } }

/* Fethiye Theme Real Integration Fixes */

/* 1. Header & Profile Dropdown Fixes */
.fethiye-prototype-home .profile-dropdown-wrapper {
  position: relative;
}

.fethiye-prototype-home .profile-avatar-btn {
  padding: 0 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 2px solid var(--primary) !important;
  cursor: pointer;
  overflow: hidden;
}

.fethiye-prototype-home .profile-avatar-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .nav-dropdown-menu {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + 12px) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-xl) !important;
  min-width: 220px !important;
  padding: 8px !important;
  z-index: 1000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .nav-dropdown-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: var(--transition) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .nav-dropdown-link:hover {
  background: var(--gray-light) !important;
  color: var(--primary) !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .nav-dropdown-link i {
  width: 16px !important;
  text-align: center !important;
}

/* 2. Notification Dropdown Fixes */
.fethiye-prototype-home .topbar-actions .relative > button {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #f1f6ff !important;
  border: 0 !important;
  color: #071e4d !important;
  display: grid !important;
  place-items: center !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
}

.fethiye-prototype-home .topbar-actions .relative > button:hover {
  background: #e5efff !important;
  transform: translateY(-1px) !important;
}

.fethiye-prototype-home .topbar-actions .relative > button svg {
  color: #071e4d !important;
}

/* 3. Global FontAwesome override & color fixes */
.fethiye-prototype-home [class^="fa-"], .fethiye-prototype-home [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900 !important;
  font-style: normal !important;
}

/* 4. Text and Link Colors matching the prototype */
.fethiye-prototype-home .hero-title, 
.fethiye-prototype-home .hero-desc,
.fethiye-prototype-home .section-title,
.fethiye-prototype-home .discover-card-title,
.fethiye-prototype-home .business-title,
.fethiye-prototype-home .market-product-title,
.fethiye-prototype-home .local-life-card h3 {
  color: var(--dark) !important;
}

.fethiye-prototype-home .hero-title span {
  color: var(--primary) !important;
}

.fethiye-prototype-home .discover-card-desc,
.fethiye-prototype-home .business-location,
.fethiye-prototype-home .market-product-vendor,
.fethiye-prototype-home .local-life-card p {
  color: var(--gray) !important;
}

.fethiye-prototype-home a:hover {
  color: var(--primary) !important;
}

/* 5. Arama Butonu Fixes */
.fethiye-prototype-home .btn-search-trigger {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  display: grid !important;
  place-items: center !important;
  cursor: pointer !important;
}

.fethiye-prototype-home .btn-search-trigger:hover {
  background-color: var(--primary-hover) !important;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

.fethiye-prototype-home .btn-search-trigger i {
  color: var(--white) !important;
  font-size: 18px !important;
}

/* 6. Footer Layout & Text Contrast */
.fethiye-prototype-home .footer {
  display: block !important;
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 80px 0 40px !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 20 !important;
}

.fethiye-prototype-home .footer a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.fethiye-prototype-home .footer a:hover {
  color: var(--primary) !important;
}

.fethiye-prototype-home .footer h4 {
  color: var(--white) !important;
  font-weight: 800 !important;
}

.fethiye-prototype-home .f360-footer-bottom p {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* 7. Menu Item Background Fixes (Remove unwanted dark borders/backgrounds) */
.fethiye-prototype-home .topbar-nav-link:not(:hover),
.fethiye-prototype-home .nav-trigger:not(:hover),
.fethiye-prototype-home .direct-link:not(:hover),
.fethiye-prototype-home .emergency-link:not(:hover) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--dark-light) !important;
}

.fethiye-prototype-home .topbar-nav-link:hover,
.fethiye-prototype-home .nav-trigger:hover,
.fethiye-prototype-home .direct-link:hover {
  color: #08b9d2 !important;
  background: #f1f5f9 !important;
}

/* 8. Notification & Avatar Dropdown Custom Styles to match index.html dropdown menu */
.fethiye-prototype-home .topbar-actions .relative > div[class*="absolute"] {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: calc(100% + 10px) !important;
  width: 320px !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  padding: 8px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(226, 232, 240, .9) !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 24px 52px rgba(15, 23, 42, .14) !important;
  backdrop-filter: blur(14px) !important;
  z-index: 1000 !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .nav-dropdown-menu {
  width: 232px !important;
}

.fethiye-prototype-home .topbar-actions .relative button {
  box-shadow: none !important;
}

/* Fethiye home visual audit fixes 20260708 start */
/* Hero text needs to sit on photography, not inherit light-section colors. */
.fethiye-prototype-home .hero-title,
.fethiye-prototype-home .hero-desc {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(2, 6, 23, 0.36) !important;
}

.fethiye-prototype-home .hero-title span {
  color: #18d8ef !important;
  text-shadow: 0 3px 18px rgba(2, 6, 23, 0.22) !important;
}

.fethiye-prototype-home .hero-desc {
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 520px !important;
  font-weight: 700 !important;
}

/* Photo cards: keep all copy readable over imagery. */
.fethiye-prototype-home .section-discover .discover-card::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.03) 22%, rgba(2, 8, 23, 0.44) 58%, rgba(2, 8, 23, 0.88) 100%) !important;
}

.fethiye-prototype-home .section-discover .discover-card-title,
.fethiye-prototype-home .section-discover .discover-feature-card .discover-card-title,
.fethiye-prototype-home .discover-route-card .discover-card-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(2, 6, 23, 0.55) !important;
}

.fethiye-prototype-home .section-discover .discover-card-desc,
.fethiye-prototype-home .section-discover .discover-feature-card .discover-card-desc,
.fethiye-prototype-home .discover-route-card .discover-card-desc {
  color: rgba(255, 255, 255, 0.88) !important;
  text-shadow: 0 2px 8px rgba(2, 6, 23, 0.50) !important;
  font-weight: 700 !important;
}

.fethiye-prototype-home .section-discover .discover-card-icon {
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
}

/* Footer: remove the broken overlapping wave and rebuild a clean dark footer. */
.fethiye-prototype-home .footer {
  margin-top: 40px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(6, 182, 212, 0.20), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #07172c 0%, #0b1426 100%) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(34, 211, 238, 0.16) !important;
}

.fethiye-prototype-home .footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #06b6d4, #22c55e, #3b82f6, #f59e0b);
}

.fethiye-prototype-home .footer .f360-sea-wave-footer {
  display: none !important;
}

.fethiye-prototype-home .footer .f360-footer-inner {
  width: min(calc(100% - 72px), 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 58px 0 30px !important;
  position: relative !important;
  z-index: 1 !important;
}

.fethiye-prototype-home .footer .f360-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.82fr)) minmax(230px, 1fr) !important;
  gap: 34px !important;
  align-items: start !important;
}

.fethiye-prototype-home .footer .f360-footer-block {
  min-width: 0 !important;
  gap: 12px !important;
}

.fethiye-prototype-home .footer .footer-logo-img {
  height: 42px !important;
  width: auto !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(6, 182, 212, 0.22)) !important;
  opacity: 0.98 !important;
  margin-bottom: 14px !important;
}

.fethiye-prototype-home .footer .f360-footer-block h4 {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
}

.fethiye-prototype-home .footer .f360-footer-block h4 span {
  width: 5px !important;
  height: 22px !important;
  flex: 0 0 auto !important;
}

.fethiye-prototype-home .footer .f360-footer-block p {
  color: rgba(226, 232, 240, 0.78) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  font-weight: 500 !important;
}

.fethiye-prototype-home .footer .f360-footer-block a {
  color: rgba(226, 232, 240, 0.82) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transition: color 0.22s ease, transform 0.22s ease !important;
}

.fethiye-prototype-home .footer .f360-footer-block a:hover {
  color: #22d3ee !important;
  padding-left: 0 !important;
  transform: translateX(3px) !important;
}

.fethiye-prototype-home .footer .f360-footer-socials a {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  display: inline-grid !important;
  place-items: center !important;
}

.fethiye-prototype-home .footer .f360-footer-socials a:hover {
  background: #06b6d4 !important;
  border-color: #06b6d4 !important;
  transform: translateY(-2px) !important;
}

.fethiye-prototype-home .footer .f360-footer-bottom {
  margin-top: 40px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
}

.fethiye-prototype-home .footer .f360-footer-bottom p {
  color: rgba(226, 232, 240, 0.66) !important;
  font-size: 13px !important;
}

/* Cookie card should not cover primary desktop content. */
body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  width: min(370px, calc(100vw - 32px)) !important;
  max-width: 370px !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent .f360-cookie-panel {
  width: 100% !important;
  max-width: 370px !important;
  max-height: none !important;
  overflow: visible !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
  padding: 14px !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13) !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent .f360-cookie-panel > div:first-child {
  gap: 10px !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent .f360-cookie-panel > div:first-child > div:first-child {
  width: 38px !important;
  height: 38px !important;
  border-radius: 14px !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent h3 {
  margin-bottom: 2px !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent p,
body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent a {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent p {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent .f360-cookie-panel > div:last-child {
  width: 100% !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent button {
  min-height: 36px !important;
  min-width: 36px !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
}

@media (max-width: 1120px) {
  .fethiye-prototype-home .footer .f360-footer-inner {
    width: calc(100% - 48px) !important;
  }
  .fethiye-prototype-home .footer .f360-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .fethiye-prototype-home .footer .f360-footer-brand-block,
  .fethiye-prototype-home .footer .f360-footer-social-block {
    grid-column: span 2 !important;
  }
}

@media (max-width: 700px) {
  .fethiye-prototype-home .hero-title {
    color: #ffffff !important;
  }
  .fethiye-prototype-home .footer {
    display: none !important;
  }
  body.theme-fethiye:has(.fethiye-prototype-home) .f360-cookie-consent {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
  }
}
/* Fethiye home visual audit fixes 20260708 end */

/* Fethiye sea footer parity 20260708 start */
body.theme-fethiye .f360-sea-footer,
body.theme-fethiye-deniz .f360-sea-footer {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  margin-top: 72px !important;
  background: #1A5F7A !important;
  color: #ffffff !important;
  z-index: 20 !important;
  border: 0 !important;
}

body.theme-fethiye .f360-sea-footer .f360-sea-wave-footer,
body.theme-fethiye-deniz .f360-sea-footer .f360-sea-wave-footer {
  display: block !important;
  position: absolute !important;
  top: -2px !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 120px !important;
  z-index: 0 !important;
  overflow: hidden !important;
  transform: rotate(180deg) !important;
  opacity: 1 !important;
  line-height: 0 !important;
  pointer-events: none !important;
}

body.theme-fethiye .f360-sea-footer .f360-sea-wave-footer svg,
body.theme-fethiye-deniz .f360-sea-footer .f360-sea-wave-footer svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 112px !important;
  position: relative !important;
}

body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use,
body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use {
  will-change: transform !important;
  animation: f360-footer-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite !important;
}

body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use:nth-child(1),
body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use:nth-child(1) {
  animation-delay: -2s !important;
  animation-duration: 7s !important;
}

body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use:nth-child(2),
body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use:nth-child(2) {
  animation-delay: -3s !important;
  animation-duration: 10s !important;
}

body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use:nth-child(3),
body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use:nth-child(3) {
  animation-delay: -4s !important;
  animation-duration: 13s !important;
}

body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use:nth-child(4),
body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use:nth-child(4) {
  animation-delay: -5s !important;
  animation-duration: 20s !important;
  fill: var(--page-bg, #f3f4f6) !important;
}

@keyframes f360-footer-move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

body.theme-fethiye .f360-footer-inner,
body.theme-fethiye-deniz .f360-footer-inner {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: clamp(7rem, 9vw, 9rem) 24px 48px !important;
}

body.theme-fethiye .f360-footer-grid,
body.theme-fethiye-deniz .f360-footer-grid {
  display: grid !important;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1.25fr !important;
  gap: 32px !important;
  align-items: start !important;
}

body.theme-fethiye .f360-footer-block,
body.theme-fethiye-deniz .f360-footer-block {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

body.theme-fethiye .f360-footer-brand,
body.theme-fethiye-deniz .f360-footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 2px !important;
}

body.theme-fethiye .footer-logo-img,
body.theme-fethiye-deniz .footer-logo-img {
  height: 38px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.95 !important;
  margin-bottom: 16px !important;
}

body.theme-fethiye .f360-footer-block h4,
body.theme-fethiye-deniz .f360-footer-block h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

body.theme-fethiye .f360-footer-block > h4 span,
body.theme-fethiye-deniz .f360-footer-block > h4 span {
  display: inline-block !important;
  width: 6px !important;
  height: 24px !important;
  border-radius: 999px !important;
  background: #06b6d4 !important;
}

body.theme-fethiye .f360-footer-block:nth-child(3) > h4 span,
body.theme-fethiye-deniz .f360-footer-block:nth-child(3) > h4 span { background: #2563eb !important; }
body.theme-fethiye .f360-footer-block:nth-child(4) > h4 span,
body.theme-fethiye-deniz .f360-footer-block:nth-child(4) > h4 span { background: #22c55e !important; }
body.theme-fethiye .f360-footer-block:nth-child(5) > h4 span,
body.theme-fethiye-deniz .f360-footer-block:nth-child(5) > h4 span { background: #f59e0b !important; }

body.theme-fethiye .f360-footer-block p,
body.theme-fethiye-deniz .f360-footer-block p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.70) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}

body.theme-fethiye .f360-footer-links,
body.theme-fethiye-deniz .f360-footer-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

body.theme-fethiye .f360-footer-block a,
body.theme-fethiye-deniz .f360-footer-block a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color 0.25s ease, padding-left 0.25s ease, background-color 0.25s ease, border-color 0.25s ease !important;
}

body.theme-fethiye .f360-footer-block a span,
body.theme-fethiye-deniz .f360-footer-block a span {
  color: rgba(255, 255, 255, 0.42) !important;
  transition: color 0.25s ease !important;
}

body.theme-fethiye .f360-footer-block a:hover,
body.theme-fethiye-deniz .f360-footer-block a:hover {
  color: #2ECC9A !important;
  padding-left: 8px !important;
}

body.theme-fethiye .f360-footer-block a:hover span,
body.theme-fethiye-deniz .f360-footer-block a:hover span {
  color: #2ECC9A !important;
}

body.theme-fethiye .f360-footer-socials,
body.theme-fethiye-deniz .f360-footer-socials {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 2px !important;
}

body.theme-fethiye .f360-footer-socials a,
body.theme-fethiye-deniz .f360-footer-socials a {
  width: 44px !important;
  height: 44px !important;
  justify-content: center !important;
  border-radius: 10px !important;
  border: 1px solid rgba(148, 163, 184, 0.35) !important;
  background: rgba(15, 23, 42, 0.34) !important;
  color: #cbd5e1 !important;
  padding: 0 !important;
}

body.theme-fethiye .f360-footer-socials a:hover,
body.theme-fethiye-deniz .f360-footer-socials a:hover {
  padding-left: 0 !important;
  border-color: #06b6d4 !important;
  background: #06b6d4 !important;
  color: #ffffff !important;
}

body.theme-fethiye .f360-footer-socials svg,
body.theme-fethiye-deniz .f360-footer-socials svg {
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.theme-fethiye .f360-footer-socials svg.filled,
body.theme-fethiye-deniz .f360-footer-socials svg.filled {
  fill: currentColor !important;
  stroke: none !important;
}

body.theme-fethiye .f360-footer-bottom,
body.theme-fethiye-deniz .f360-footer-bottom {
  margin-top: 48px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.38) !important;
}

body.theme-fethiye .f360-footer-bottom p,
body.theme-fethiye-deniz .f360-footer-bottom p {
  margin: 0 !important;
  text-align: left !important;
  color: rgba(226, 232, 240, 0.70) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

@media (max-width: 960px) {
  body.theme-fethiye .f360-footer-grid,
  body.theme-fethiye-deniz .f360-footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.theme-fethiye .f360-footer-social-block,
  body.theme-fethiye-deniz .f360-footer-social-block { grid-column: span 2 !important; }
  body.theme-fethiye .f360-sea-footer,
  body.theme-fethiye-deniz .f360-sea-footer { margin-top: 48px !important; }
}

@media (max-width: 767px) {
  body.theme-fethiye .f360-sea-footer,
  body.theme-fethiye-deniz .f360-sea-footer { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-fethiye .f360-sea-footer .f360-footer-parallax > use,
  body.theme-fethiye-deniz .f360-sea-footer .f360-footer-parallax > use {
    animation: none !important;
  }
}
/* Fethiye sea footer parity 20260708 end */

/* Fethiye prototype menu polish 20260708 start */
.fethiye-prototype-home .topbar-nav .topbar-nav-link:not(.emergency-link):not(.panel-link),
.fethiye-prototype-home .topbar-nav .nav-trigger:not(.emergency-link):not(.panel-link),
.fethiye-prototype-home .topbar-nav .direct-link:not(.emergency-link):not(.panel-link),
.fethiye-prototype-home .nav-dropdown:hover .nav-trigger:not(.emergency-link):not(.panel-link),
.fethiye-prototype-home .topbar-nav .topbar-nav-link:not(.emergency-link):not(.panel-link):hover,
.fethiye-prototype-home .topbar-nav .direct-link:not(.emergency-link):not(.panel-link):hover {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #0f172a !important;
  transform: none !important;
}

.fethiye-prototype-home .topbar-nav .topbar-nav-link:not(.emergency-link):not(.panel-link):hover,
.fethiye-prototype-home .topbar-nav .nav-dropdown:hover .nav-trigger:not(.emergency-link):not(.panel-link),
.fethiye-prototype-home .topbar-nav .direct-link:not(.emergency-link):not(.panel-link):hover {
  color: #0798b3 !important;
}

.fethiye-prototype-home .topbar-nav .emergency-link,
.fethiye-prototype-home .topbar-nav .emergency-link:not(:hover),
.fethiye-prototype-home .topbar-nav .emergency-link:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.24) !important;
  transform: none !important;
}

.fethiye-prototype-home .topbar-nav .emergency-link i,
.fethiye-prototype-home .topbar-nav .emergency-link span,
.fethiye-prototype-home .topbar-nav .panel-link i,
.fethiye-prototype-home .topbar-nav .panel-link span {
  color: #ffffff !important;
}

.fethiye-prototype-home .topbar-nav .panel-link,
.fethiye-prototype-home .topbar-nav .panel-link:not(:hover),
.fethiye-prototype-home .topbar-nav .panel-link:hover {
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24) !important;
  transform: none !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-menu-panel {
  width: 254px !important;
  min-width: 254px !important;
  z-index: 1200 !important;
  gap: 3px !important;
}

.fethiye-prototype-home .profile-menu-user {
  padding: 10px 12px 12px !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
  margin-bottom: 4px !important;
}

.fethiye-prototype-home .profile-menu-user strong,
.fethiye-prototype-home .profile-menu-user small {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.fethiye-prototype-home .profile-menu-user strong {
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.fethiye-prototype-home .profile-menu-user small {
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  margin-top: 3px !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-menu-link {
  min-height: 42px !important;
  padding: 0 12px !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #334155 !important;
  font-weight: 760 !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-menu-link:hover {
  background: #f8fafc !important;
  color: #0891b2 !important;
  padding-left: 12px !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-panel-link,
.fethiye-prototype-home .profile-dropdown-wrapper .profile-panel-link:hover {
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  color: #ffffff !important;
  margin-top: 4px !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-panel-link i,
.fethiye-prototype-home .profile-dropdown-wrapper .profile-panel-link span {
  color: #ffffff !important;
}

.fethiye-prototype-home .profile-dropdown-wrapper .profile-menu-logout,
.fethiye-prototype-home .profile-dropdown-wrapper .profile-menu-logout:hover {
  border: 0 !important;
  background: transparent !important;
  color: #dc2626 !important;
  box-shadow: none !important;
}

.fethiye-prototype-home .topbar-actions .f360-notification-dropdown > button,
.fethiye-prototype-home .topbar-actions .profile-avatar-btn {
  box-shadow: none !important;
}

.fethiye-prototype-home .topbar-actions .f360-notification-panel {
  z-index: 1200 !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16) !important;
}
/* Fethiye prototype menu polish 20260708 end */


/* Fethiye strict menu background removal 20260708 start */
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav-item,
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link),
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.nav-trigger:not(.emergency-link):not(.panel-link),
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.direct-link:not(.emergency-link):not(.panel-link),
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.nav-trigger:not(.emergency-link):not(.panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.direct-link:not(.emergency-link):not(.panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav .nav-dropdown:hover > a.nav-trigger:not(.emergency-link):not(.panel-link) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  border-width: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav-item::before,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav-item::after,
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown::before,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link)::before,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link)::after {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown::after {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link) {
  color: #08204a !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.topbar-nav-link:not(.emergency-link):not(.panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav .nav-dropdown:hover > a.nav-trigger:not(.emergency-link):not(.panel-link) {
  color: #0798b3 !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.emergency-link,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.emergency-link:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  background-image: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border-width: 1px !important;
  border-color: rgba(255,255,255,0.42) !important;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.24) !important;
  color: #ffffff !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.panel-link,
html body.theme-fethiye .fethiye-prototype-home .topbar .topbar-nav a.panel-link:hover {
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  background-image: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  border-width: 1px !important;
  border-color: rgba(255,255,255,0.42) !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24) !important;
  color: #ffffff !important;
}
/* Fethiye strict menu background removal 20260708 end */


/* Fethiye menu inner surface cleanup 20260708 start */
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown-menu .nav-dropdown-link:not(.profile-panel-link),
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown-menu .nav-dropdown-link:not(.profile-panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown-menu .nav-dropdown-link:not(.profile-panel-link):focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown-menu .nav-dropdown-link:not(.profile-panel-link):hover,
html body.theme-fethiye .fethiye-prototype-home .topbar .nav-dropdown-menu .nav-dropdown-link:not(.profile-panel-link):focus-visible {
  color: #0798b3 !important;
  padding-left: 12px !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar-actions .f360-notification-dropdown,
html body.theme-fethiye .fethiye-prototype-home .topbar-actions .profile-dropdown-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar-actions .f360-notification-dropdown > button,
html body.theme-fethiye .fethiye-prototype-home .topbar-actions .f360-notification-dropdown > button:hover,
html body.theme-fethiye .fethiye-prototype-home .topbar-actions .profile-avatar-btn,
html body.theme-fethiye .fethiye-prototype-home .topbar-actions .profile-avatar-btn:hover {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar-actions .f360-notification-dropdown > button svg {
  color: #071e4d !important;
  stroke: currentColor !important;
}

html body.theme-fethiye .fethiye-prototype-home .profile-avatar-btn > div,
html body.theme-fethiye .fethiye-prototype-home .profile-avatar-btn > img {
  box-shadow: none !important;
}
/* Fethiye menu inner surface cleanup 20260708 end */

/* Fethiye scrolled header surface cleanup 20260708 start */
html body.theme-fethiye:has(.fethiye-prototype-home .topbar.scrolled)::before {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 88px !important;
  display: flex !important;
  align-items: center !important;
  transform: none !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 145, 178, 0.10) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  isolation: isolate !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -18px !important;
  height: 18px !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(8, 32, 74, 0.075), rgba(8, 32, 74, 0)) !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .topbar-inner {
  position: relative !important;
  z-index: 1 !important;
  width: min(calc(100% - (var(--f360-page-gutter, 40px) * 2)), var(--f360-page-max, 1340px)) !important;
  max-width: var(--f360-page-max, 1340px) !important;
  height: 76px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .nav-dropdown-menu,
html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .profile-menu-panel,
html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .f360-notification-panel {
  z-index: 1200 !important;
}

@media (max-width: 1120px) {
  html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .topbar-inner {
    width: calc(100% - 48px) !important;
  }
}

@media (max-width: 640px) {
  html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled {
    min-height: 76px !important;
  }

  html body.theme-fethiye .fethiye-prototype-home .topbar.scrolled .topbar-inner {
    width: calc(100% - 32px) !important;
    height: 64px !important;
    padding: 0 16px !important;
  }
}

html body.theme-fethiye nav.f360-sea-header-nav.f360-sea-header-scrolled {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding-inline: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(8, 145, 178, 0.10) !important;
  box-shadow: none !important;
  isolation: isolate !important;
}

html body.theme-fethiye nav.f360-sea-header-nav.f360-sea-header-scrolled::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -18px !important;
  height: 18px !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(8, 32, 74, 0.075), rgba(8, 32, 74, 0)) !important;
}

html body.theme-fethiye nav.f360-sea-header-nav.f360-sea-header-scrolled .f360-sea-header-bar {
  position: relative !important;
  z-index: 1 !important;
  width: min(calc(100% - (var(--f360-page-gutter, 40px) * 2)), var(--f360-page-max, 1340px)) !important;
  max-width: var(--f360-page-max, 1340px) !important;
  margin-inline: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
/* Fethiye scrolled header surface cleanup 20260708 end */

/* Fethiye photo overlay cleanup 20260708 start */
.fethiye-prototype-home .section-discover .discover-card::before,
.fethiye-prototype-home .section-guide-places .discover-card::before {
  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0) 0%,
    rgba(2, 8, 23, 0.02) 52%,
    rgba(2, 8, 23, 0.20) 76%,
    rgba(2, 8, 23, 0.52) 100%
  ) !important;
}

.fethiye-prototype-home .section-discover .discover-card-content,
.fethiye-prototype-home .section-guide-places .discover-card-content {
  bottom: 18px !important;
  left: 18px !important;
  right: 18px !important;
}

.fethiye-prototype-home .flash-deal-module {
  background: transparent !important;
}

.fethiye-prototype-home .flash-deal-module::before {
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 0%,
    rgba(2, 6, 23, 0.04) 48%,
    rgba(2, 6, 23, 0.22) 72%,
    rgba(2, 6, 23, 0.56) 100%
  ) !important;
}

.fethiye-prototype-home .flash-deal-bg {
  filter: saturate(1.04) contrast(1.02) !important;
}

.fethiye-prototype-home .flash-deal-panel {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.fethiye-prototype-home .flash-deal-title,
.fethiye-prototype-home .flash-deal-desc,
.fethiye-prototype-home .flash-old-price,
.fethiye-prototype-home .flash-price {
  text-shadow: 0 2px 12px rgba(2, 6, 23, 0.54) !important;
}
/* Fethiye photo overlay cleanup 20260708 end */

/* Fethiye photo overlay removal 20260708 start */
.fethiye-prototype-home .section-discover .discover-card::before,
.fethiye-prototype-home .section-guide-places .discover-card::before,
.fethiye-prototype-home .flash-deal-module::before {
  background: none !important;
  opacity: 0 !important;
}

.fethiye-prototype-home .section-discover .discover-card-content,
.fethiye-prototype-home .section-guide-places .discover-card-content {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.fethiye-prototype-home .section-discover .discover-card-title,
.fethiye-prototype-home .section-guide-places .discover-card-title,
.fethiye-prototype-home .section-discover .discover-card-desc,
.fethiye-prototype-home .section-guide-places .discover-card-desc,
.fethiye-prototype-home .flash-deal-title,
.fethiye-prototype-home .flash-deal-desc,
.fethiye-prototype-home .flash-old-price,
.fethiye-prototype-home .flash-price {
  text-shadow: 0 2px 5px rgba(2, 6, 23, 0.72), 0 8px 18px rgba(2, 6, 23, 0.48) !important;
}

.fethiye-prototype-home .flash-deal-panel {
  background: transparent !important;
}
/* Fethiye photo overlay removal 20260708 end */

/* Fethiye photo full cover fix 20260708 start */
html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card,
html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-module {
  background: transparent !important;
}

html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card > img.discover-card-img,
html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card > img.discover-card-img,
html body.theme-fethiye .fethiye-prototype-home img.flash-deal-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
}

html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card-content,
html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card-content,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel {
  position: relative !important;
  z-index: 2 !important;
}
/* Fethiye photo full cover fix 20260708 end */

/* Fethiye photo content position fix 20260708 start */
html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card-content,
html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card-content {
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  top: auto !important;
  width: auto !important;
  z-index: 2 !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel {
  position: relative !important;
  z-index: 2 !important;
}
/* Fethiye photo content position fix 20260708 end */

/* Fethiye flash photo-only cleanup 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .flash-deal-module,
html body.theme-fethiye .fethiye-prototype-home .market-flash-grid .flash-deal-module {
  background: transparent !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-module::before,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-module::after,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel::before,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel,
html body.theme-fethiye .fethiye-prototype-home .market-flash-grid .flash-deal-panel {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-title,
html body.theme-fethiye .fethiye-prototype-home .flash-price {
  color: #ffffff !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-desc,
html body.theme-fethiye .fethiye-prototype-home .flash-old-price {
  color: rgba(255, 255, 255, 0.86) !important;
}
/* Fethiye flash photo-only cleanup 20260709 end */

/* Fethiye real data cards 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .business-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 272px !important;
  background: #ffffff !important;
  color: var(--dark) !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-card-img-wrapper {
  position: relative !important;
  flex: 0 0 180px !important;
  height: 180px !important;
  overflow: hidden !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-card-img-wrapper .business-card-img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-card-content {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  flex: 1 1 auto !important;
  min-height: 92px !important;
  padding: 18px 20px 20px !important;
  background: #ffffff !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-title {
  color: var(--dark) !important;
  font-size: 17px !important;
  line-height: 1.22 !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-location,
html body.theme-fethiye .fethiye-prototype-home .business-rating {
  color: var(--dark-light) !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-tag.default {
  background: #0ea5e9 !important;
}
/* Fethiye real data cards 20260709 end */


/* Fethiye events/routes real data 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .card-events .event {
  min-width: 0 !important;
  border-radius: 16px !important;
}

html body.theme-fethiye .fethiye-prototype-home .card-events .event img {
  display: block !important;
  width: 66px !important;
  height: 66px !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: linear-gradient(135deg, #e0f7ff, #f8fafc) !important;
  flex: 0 0 66px !important;
}

html body.theme-fethiye .fethiye-prototype-home .card-events .event h3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

html body.theme-fethiye .fethiye-prototype-home .card-events .event p {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

html body.theme-fethiye .fethiye-prototype-home .preview-recommended-route .route-img-wrapper {
  background: linear-gradient(135deg, #dff8ff, #f8fafc) !important;
  overflow: hidden !important;
}

html body.theme-fethiye .fethiye-prototype-home .preview-recommended-route .route-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 318px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

html body.theme-fethiye .fethiye-prototype-home .preview-recommended-route .route-info-wrapper {
  min-width: 0 !important;
}

html body.theme-fethiye .fethiye-prototype-home .preview-recommended-route .route-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

html body.theme-fethiye .fethiye-prototype-home .preview-recommended-route .route-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
/* Fethiye events/routes real data 20260709 end */
/* Fethiye home requested polish 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card::before,
html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0) 0%,
    rgba(2, 8, 23, 0.03) 42%,
    rgba(2, 8, 23, 0.32) 70%,
    rgba(2, 8, 23, 0.82) 100%
  ) !important;
}

html body.theme-fethiye .fethiye-prototype-home .flash-deal-module::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, 0) 0%,
    rgba(2, 8, 23, 0.06) 38%,
    rgba(2, 8, 23, 0.46) 68%,
    rgba(2, 8, 23, 0.92) 100%
  ) !important;
}

html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card-content,
html body.theme-fethiye .fethiye-prototype-home .section-discover .discover-card-content,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-panel {
  z-index: 2 !important;
}

html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card-title,
html body.theme-fethiye .fethiye-prototype-home .section-guide-places .discover-card-desc,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-title,
html body.theme-fethiye .fethiye-prototype-home .flash-deal-desc,
html body.theme-fethiye .fethiye-prototype-home .flash-old-price,
html body.theme-fethiye .fethiye-prototype-home .flash-price {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(2, 6, 23, 0.78), 0 10px 24px rgba(2, 6, 23, 0.46) !important;
}

html body.theme-fethiye .fethiye-prototype-home button.btn-hero-secondary,
html body.theme-fethiye .fethiye-prototype-home button.category-item {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  font: inherit !important;
  cursor: pointer !important;
}

html body.theme-fethiye .fethiye-prototype-home button.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
}

html body.theme-fethiye .fethiye-prototype-home button.category-item {
  background: transparent !important;
  color: inherit !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill:hover,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-out 0s !important;
}

html body.theme-fethiye .fethiye-prototype-home .btn-hero-primary:hover {
  background: #11c5d8 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(17, 197, 216, 0.30) !important;
}

html body.theme-fethiye .fethiye-prototype-home .place-suggestion-action {
  background: #0b84d8 !important;
  color: #ffffff !important;
  border-color: rgba(11, 132, 216, 0.34) !important;
}

html body.theme-fethiye .fethiye-prototype-home .place-suggestion-action:hover {
  background: #11c5d8 !important;
  color: #ffffff !important;
  border-color: rgba(17, 197, 216, 0.40) !important;
  box-shadow: 0 16px 30px rgba(17, 197, 216, 0.24) !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-rating,
html body.theme-fethiye .fethiye-prototype-home .business-rating i,
html body.theme-fethiye .fethiye-prototype-home .business-rating svg,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child i,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child svg {
  color: #0b84d8 !important;
  stroke: currentColor !important;
}

html body.theme-fethiye .fethiye-prototype-home .local-market-link.section-link {
  flex: 0 0 auto !important;
  min-height: 44px !important;
  padding: 0 18px !important;
}

html body.theme-fethiye .fethiye-prototype-home .market-product-vendor {
  font-size: 13px !important;
  line-height: 1.25 !important;
}

html body.theme-fethiye .fethiye-prototype-home .market-product-title {
  font-size: 17px !important;
  line-height: 1.22 !important;
}

html body.theme-fethiye .fethiye-prototype-home .market-product-button:hover {
  background: #0b84d8 !important;
  color: #ffffff !important;
  border-color: rgba(11, 132, 216, 0.42) !important;
  box-shadow: 0 14px 26px rgba(11, 132, 216, 0.20) !important;
}

html body.theme-fethiye .fethiye-prototype-home .market-product-button:hover i,
html body.theme-fethiye .fethiye-prototype-home .market-product-button:hover svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}

html body.theme-fethiye .fethiye-prototype-home .local-life-badge {
  display: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .local-life-card,
html body.theme-fethiye .fethiye-prototype-home .local-life-card h3,
html body.theme-fethiye .fethiye-prototype-home .local-life-card p,
html body.theme-fethiye .fethiye-prototype-home .local-life-action,
html body.theme-fethiye .fethiye-prototype-home .local-life-action i {
  color: #ffffff !important;
}

html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature,
html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature h2,
html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature p,
html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature .white-btn,
html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature .boat-glow {
  color: #ffffff !important;
}

html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature h2,
html body.theme-fethiye .fethiye-prototype-home .bottom-boat-feature p {
  text-shadow: 0 2px 12px rgba(2, 8, 23, 0.55) !important;
}

html body.theme-fethiye .fethiye-prototype-home .community-avatar,
html body.theme-fethiye .fethiye-prototype-home .community-avatar img {
  border-radius: 14px !important;
}

html body.theme-fethiye .fethiye-prototype-home .community-img-wrapper {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
}
/* Fethiye home requested polish 20260709 end */
/* F360 unified action blue 20260709 start */
html body.theme-fethiye .fethiye-prototype-home {
  --f360-action-blue-start: #12bfd0;
  --f360-action-blue-end: #078fc4;
  --f360-action-blue-solid: #078fc4;
  --f360-action-blue-shadow: rgba(8, 145, 178, 0.20);
}

html body.theme-fethiye .fethiye-prototype-home .btn-hero-primary:hover,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-action,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-action:hover,
html body.theme-fethiye .fethiye-prototype-home .market-product-button:hover,
html body.theme-fethiye .fethiye-prototype-home .business-tag.default {
  background: linear-gradient(135deg, var(--f360-action-blue-start), var(--f360-action-blue-end)) !important;
  color: #ffffff !important;
  border-color: rgba(6, 182, 212, 0.42) !important;
}

html body.theme-fethiye .fethiye-prototype-home .btn-hero-primary:hover,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-action:hover,
html body.theme-fethiye .fethiye-prototype-home .market-product-button:hover {
  box-shadow: 0 15px 28px var(--f360-action-blue-shadow) !important;
}

html body.theme-fethiye .fethiye-prototype-home .business-rating,
html body.theme-fethiye .fethiye-prototype-home .business-rating i,
html body.theme-fethiye .fethiye-prototype-home .business-rating svg,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child i,
html body.theme-fethiye .fethiye-prototype-home .place-suggestion-meta span:first-child svg {
  color: var(--f360-action-blue-solid) !important;
  stroke: currentColor !important;
}
/* F360 unified action blue 20260709 end */
/* F360 unified control system 20260709 start */
html body.theme-fethiye {
  --f360-radius-control: 999px;
  --f360-radius-icon: 16px;
  --f360-radius-tag: 999px;
  --f360-radius-card: 28px;
  --f360-action-blue-start: #12bfd0;
  --f360-action-blue-end: #078fc4;
  --f360-action-blue-solid: #078fc4;
  --f360-action-blue-soft: rgba(6, 182, 212, 0.10);
  --f360-action-blue-border: rgba(6, 182, 212, 0.26);
  --f360-action-blue-shadow: rgba(8, 145, 178, 0.20);
}

html body.theme-fethiye :is(
  .section-header .section-link,
  .local-market-link,
  .business-section-head > a,
  .list-card-head > a,
  .sidebar-card-head > a
) {
  border-radius: var(--f360-radius-control) !important;
  color: var(--f360-action-blue-solid) !important;
  -webkit-text-fill-color: var(--f360-action-blue-solid) !important;
  background: linear-gradient(135deg, rgba(232, 251, 255, 0.98), rgba(238, 247, 255, 0.98)) !important;
  border-color: var(--f360-action-blue-border) !important;
}

html body.theme-fethiye :is(
  .section-header .section-link,
  .local-market-link,
  .business-section-head > a,
  .list-card-head > a,
  .sidebar-card-head > a
):hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(135deg, var(--f360-action-blue-start), var(--f360-action-blue-end)) !important;
  border-color: rgba(6, 182, 212, 0.42) !important;
  box-shadow: 0 15px 28px var(--f360-action-blue-shadow) !important;
}

html body.theme-fethiye :is(
  .section-header .section-link,
  .local-market-link,
  .business-section-head > a,
  .list-card-head > a,
  .sidebar-card-head > a
):hover :is(i, svg, span, strong) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

html body.theme-fethiye :is(
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-search-trigger,
  .place-suggestion-action,
  .market-product-button,
  .local-life-action,
  .white-btn
) {
  border-radius: var(--f360-radius-control) !important;
}

html body.theme-fethiye :is(
  .btn-hero-primary:hover,
  .place-suggestion-action,
  .place-suggestion-action:hover,
  .market-product-button:hover
) {
  background: linear-gradient(135deg, var(--f360-action-blue-start), var(--f360-action-blue-end)) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(6, 182, 212, 0.42) !important;
}

html body.theme-fethiye :is(
  .btn-hero-primary:hover,
  .place-suggestion-action:hover,
  .market-product-button:hover
) {
  box-shadow: 0 15px 28px var(--f360-action-blue-shadow) !important;
}

html body.theme-fethiye :is(
  .business-tag,
  .business-tag.default,
  .place-suggestion-badge,
  .flash-deal-badge,
  .pazar-badge,
  .route-badge,
  .card-badge,
  .local-life-badge
) {
  border-radius: var(--f360-radius-tag) !important;
}

html body.theme-fethiye :is(
  .category-icon-box,
  .discover-card-icon,
  .stat-icon-box,
  .preview-icon-box,
  .item-icon-box,
  .ai-icon-badge,
  .guide-category i,
  .biz-category i
) {
  border-radius: var(--f360-radius-icon) !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-top {
  background: var(--f360-action-blue-soft) !important;
  border: 1px solid rgba(6, 182, 212, 0.16) !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home :is(
  .search-input-wrapper,
  .search-input-wrapper input,
  .search-input-wrapper input:focus,
  .search-input-wrapper input:hover,
  .search-input-wrapper input:active
) {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill:hover,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--dark) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  caret-color: var(--dark) !important;
}
/* F360 unified control system 20260709 end */
/* F360 search outline cleanup 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .search-top,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:focus,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:hover,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:active {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-top {
  background: var(--f360-action-blue-soft) !important;
}
/* F360 search outline cleanup 20260709 end */
/* F360 reference hero search card 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .search-container {
  width: min(calc(100% - 56px), 1100px) !important;
  max-width: 1100px !important;
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 28px !important;
  padding: 20px 28px 24px !important;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16) !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-top {
  height: 60px !important;
  min-height: 60px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 22px !important;
  padding: 0 12px 0 22px !important;
  background: #f3f7fb !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper {
  height: 100% !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper i {
  width: 20px !important;
  color: #526985 !important;
  font-size: 17px !important;
  line-height: 1 !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:focus,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:hover,
html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input:active {
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #475569 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-input-wrapper input::placeholder {
  color: #6f7f94 !important;
  opacity: 1 !important;
}

html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger,
html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger:hover,
html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger:focus,
html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger:active {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  flex: 0 0 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #12bfd0, #078fc4) !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  transform: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger i,
html body.theme-fethiye .fethiye-prototype-home .btn-search-trigger svg {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  font-size: 18px !important;
}

html body.theme-fethiye .fethiye-prototype-home .search-categories {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  align-items: start !important;
  gap: 8px !important;
  padding: 0 6px 2px !important;
}

html body.theme-fethiye .fethiye-prototype-home .category-item,
html body.theme-fethiye .fethiye-prototype-home button.category-item {
  min-width: 0 !important;
  min-height: 74px !important;
  gap: 9px !important;
  padding: 0 !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

html body.theme-fethiye .fethiye-prototype-home .category-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  html body.theme-fethiye .fethiye-prototype-home .search-container {
    width: calc(100% - 28px) !important;
    padding: 16px !important;
    border-radius: 24px !important;
  }

  html body.theme-fethiye .fethiye-prototype-home .search-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    row-gap: 12px !important;
  }
}
/* F360 reference hero search card 20260709 end */

/* F360 hero search focus reset 20260709 start */
html body.theme-fethiye .fethiye-prototype-home .hero-search-input-shell,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input-shell:hover,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input-shell:focus,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input-shell:focus-visible,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input-shell:focus-within,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input:hover,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input:focus,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input:focus-visible,
html body.theme-fethiye .fethiye-prototype-home .hero-search-input:active {
  border: 0 !important;
  border-color: transparent !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  --tw-ring-color: transparent !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-color: transparent !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-offset-width: 0px !important;
}

html body.theme-fethiye .fethiye-prototype-home .hero-search-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

html body.theme-fethiye .fethiye-prototype-home .hero-search-input::selection {
  background: rgba(11, 172, 198, 0.18) !important;
}
/* F360 hero search focus reset 20260709 end */
