/* ============================================================
   Directory Albania — style.css
   Shared stylesheet for all pages
   ============================================================ */

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

:root {
  --red:        #C41E3A;
  --red-hover:  #A8182F;
  --red-light:  #FAEBEE;
  --red-mid:    #EFA8A8;
  --dark:       #1C1C1C;
  --dark-2:     #2A2A2A;
  --body-bg:    #FAFAF8;
  --surface:    #FFFFFF;
  --surface-2:  #F4F2EF;
  --surface-3:  #ECEAE6;
  --border:     rgba(0,0,0,0.09);
  --border-mid: rgba(0,0,0,0.15);
  --text-1:     #1C1C1C;
  --text-2:     #56544F;
  --text-3:     #8E8C87;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 22px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --max-w: 1160px;
  --nav-h: 62px;
}

html { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; scroll-behavior: smooth; }
body { background: var(--body-bg); color: var(--text-1); line-height: 1.65; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1 { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.6px; line-height: 1.15; }
h2 { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.3px; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-2); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 3.5rem 0; }
.divider    { height: 1px; background: var(--border); margin: 2rem 0; }

/* NAVBAR */
.nav { position: sticky; top: 0; z-index: 200; background: white; border-bottom: 1px solid var(--border); height: var(--nav-h); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.nav-logo { display: flex; align-items: center; gap: 9px; font-size: 1.05rem; font-weight: 800; color: var(--text-1); flex-shrink: 0; }
.nav-logo-mark { width: 34px; height: 34px; background: var(--red); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; flex: 1; }
.nav-links a { font-size: 0.875rem; color: var(--text-2); font-weight: 500; transition: color 0.15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text-1); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 0.5rem 1.1rem; border-radius: var(--r-md); font-size: 0.875rem; font-weight: 600; border: none; transition: all 0.15s; white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-hover); }
.btn-outline { background: white; color: var(--text-1); border: 1px solid var(--border-mid); }
.btn-outline:hover { background: var(--surface-2); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }

/* BADGES */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-dark { background: var(--dark); color: white; }
.badge-gray { background: var(--surface-2); color: var(--text-2); }
.badge-white { background: white; color: var(--text-1); }

/* HERO */
.hero { position: relative; overflow: hidden; min-height: 540px; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { object-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.28) 100%); }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 5rem 1.5rem; max-width: var(--max-w); margin: 0 auto; color: white; text-align: center; }
.hero-content h1 { color: white; margin-bottom: 0.75rem; }
.hero-content > p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; }

/* SEARCH BAR */
.search-bar { display: flex; max-width: 640px; margin: 0 auto; background: white; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,0.24); }
.search-bar input { flex: 1; border: none; padding: 15px 18px; font-size: 0.95rem; color: var(--text-1); min-width: 0; outline: none; }
.search-bar select { border: none; border-left: 1px solid var(--border); padding: 0 14px; font-size: 0.875rem; color: var(--text-2); background: white; outline: none; cursor: pointer; flex-shrink: 0; }
.search-btn { background: var(--dark); color: white; border: none; padding: 0 24px; font-size: 0.9rem; font-weight: 700; cursor: pointer; flex-shrink: 0; transition: background 0.15s; }
.search-btn:hover { background: var(--dark-2); }
.hero-tags { margin-top: 1.25rem; display: flex; gap: 1.25rem; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.hero-tags span { cursor: pointer; transition: color 0.15s; }
.hero-tags span:hover { color: white; }
.hero-tag-link { color: rgba(255,255,255,0.65); text-decoration: none; cursor: pointer; transition: color 0.15s; }
.hero-tag-link:hover { color: white; }

/* SECTION HEADER */
.sec-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; }
.sec-header h2 { font-size: 1.35rem; }
.sec-header a { font-size: 0.875rem; color: var(--red); font-weight: 600; }

/* CATEGORY GRID */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.cat-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: all 0.18s; text-decoration: none; display: block; }
.cat-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cat-card-img { height: 90px; overflow: hidden; }
.cat-card-img img { transition: transform 0.35s; }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-body { padding: 9px 12px 11px; }
.cat-card-name { font-size: 0.82rem; font-weight: 700; color: var(--text-1); margin-bottom: 1px; }
.cat-card-count { font-size: 0.71rem; color: var(--text-3); }

/* STATS BAR */
.stats-bar { background: var(--dark); padding: 2.25rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 4px; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.62); }

/* LISTING CARDS */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.listing-card { background: white; border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.18s, transform 0.18s; display: block; cursor: pointer; }
.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.listing-card-img { height: 175px; overflow: hidden; position: relative; }
.listing-card-img img { transition: transform 0.35s; }
.listing-card:hover .listing-card-img img { transform: scale(1.05); }
.listing-card-badge { position: absolute; top: 10px; left: 10px; }
.listing-card-body { padding: 1rem; }
.listing-card-name { font-size: 0.975rem; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
.listing-card-loc { font-size: 0.8rem; color: var(--text-3); margin-bottom: 7px; }
.listing-card-rating { font-size: 0.8rem; color: var(--text-2); display: flex; align-items: center; gap: 5px; }
.stars { color: var(--red); font-size: 0.78rem; }
.listing-card-footer { border-top: 1px solid var(--border); padding: 8px 1rem; font-size: 0.79rem; color: var(--text-3); display: flex; justify-content: space-between; }

/* DESTINATION CARDS */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dest-card { border-radius: var(--r-lg); overflow: hidden; position: relative; height: 210px; cursor: pointer; display: block; }
.dest-card img { transition: transform 0.4s; }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem; }
.dest-overlay h3 { font-size: 1.05rem; color: white; margin-bottom: 2px; }
.dest-overlay span { font-size: 0.78rem; color: rgba(255,255,255,0.78); }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.blog-card { background: white; border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; display: flex; transition: box-shadow 0.18s; cursor: pointer; }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-img { width: 155px; flex-shrink: 0; overflow: hidden; }
.blog-card-img img { height: 100%; transition: transform 0.35s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.1rem; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.71rem; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; }
.blog-card-title { font-size: 0.92rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--text-1); flex: 1; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-3); }

/* FEATURED BLOG */
.blog-featured { border-radius: var(--r-lg); overflow: hidden; position: relative; height: 400px; cursor: pointer; display: block; margin-bottom: 1.5rem; }
.blog-featured img { transition: transform 0.4s; }
.blog-featured:hover img { transform: scale(1.03); }
.blog-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.blog-featured-tag { font-size: 0.71rem; color: var(--red-mid); font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.blog-featured-title { font-size: 1.75rem; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 10px; max-width: 600px; }
.blog-featured-meta { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* TRAVEL GUIDE CARDS */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: all 0.18s; display: block; }
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-card-img { height: 190px; overflow: hidden; position: relative; }
.guide-card-img img { transition: transform 0.35s; }
.guide-card:hover .guide-card-img img { transform: scale(1.06); }
.guide-card-region { position: absolute; top: 10px; left: 10px; }
.guide-card-body { padding: 1.1rem; }
.guide-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; color: var(--text-1); }
.guide-card-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.guide-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.guide-tag { font-size: 0.7rem; padding: 3px 8px; border-radius: 20px; background: var(--surface-2); color: var(--text-2); font-weight: 500; }

/* DIRECTORY LAYOUT */
.dir-layout { display: grid; grid-template-columns: 255px 1fr; gap: 2rem; align-items: start; }
.filter-panel { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; position: sticky; top: calc(var(--nav-h) + 1rem); }
.filter-panel > h3 { font-size: 0.95rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 1.5rem; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-3); margin-bottom: 0.65rem; }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; font-size: 0.875rem; color: var(--text-2); cursor: pointer; }
.filter-check input[type="checkbox"] { accent-color: var(--red); width: 15px; height: 15px; flex-shrink: 0; }
.filter-check .count { margin-left: auto; font-size: 0.75rem; color: var(--text-3); }
.dir-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dir-results-header p { font-size: 0.875rem; color: var(--text-2); }
.dir-sort select { border: 1px solid var(--border); border-radius: var(--r-sm); padding: 6px 10px; font-size: 0.8rem; color: var(--text-2); background: white; outline: none; }
.dir-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* LISTING DETAIL */
.listing-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px; gap: 8px; border-radius: var(--r-xl); overflow: hidden; }
.gallery-main { grid-row: 1 / 3; }
.gallery-side { position: relative; overflow: hidden; }
.gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; cursor: pointer; }
.listing-info-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; margin-top: 2rem; }
.listing-sidebar { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; position: sticky; top: calc(var(--nav-h) + 1rem); }
.listing-sidebar h3 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.contact-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.contact-row:last-of-type { border-bottom: none; }
.contact-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.contact-label { font-size: 0.71rem; color: var(--text-3); display: block; margin-bottom: 1px; }
.contact-value { font-weight: 600; color: var(--text-1); }
.map-placeholder { height: 240px; background: var(--surface-2); border-radius: var(--r-lg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 0.875rem; flex-direction: column; gap: 8px; }

/* REVIEWS */
.review-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; margin-bottom: 1rem; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red-light); color: var(--red); font-weight: 800; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--text-1); }
.review-date { font-size: 0.78rem; color: var(--text-3); }
.review-text { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ARTICLE */
.article-hero { height: 480px; border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2.5rem; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-body p { font-size: 1.05rem; line-height: 1.82; margin-bottom: 1.5rem; color: var(--text-2); }
.article-body h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; color: var(--text-1); }
.article-body h3 { font-size: 1.1rem; margin: 2rem 0 0.75rem; color: var(--text-1); }
.article-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.5rem; }
.article-body ul li { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; margin-bottom: 0.4rem; }
.pullquote { border-left: 4px solid var(--red); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--red-light); border-radius: 0 var(--r-md) var(--r-md) 0; }
.pullquote p { color: var(--text-1); font-size: 1.1rem; font-style: italic; margin: 0; }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.author-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; margin-bottom: 1rem; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--red-light); color: var(--red); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.author-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.author-bio { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }
.sidebar-widget { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar-widget h4 { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.sidebar-post { display: flex; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border); cursor: pointer; }
.sidebar-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-post-img { width: 54px; height: 54px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.sidebar-post-title { font-size: 0.82rem; font-weight: 600; line-height: 1.4; color: var(--text-1); margin-bottom: 3px; }
.sidebar-post-date { font-size: 0.74rem; color: var(--text-3); }

/* NEWSLETTER */
.newsletter { background: var(--red); border-radius: var(--r-xl); padding: 3rem 2rem; text-align: center; color: white; margin: 3rem 0; }
.newsletter h2 { color: white; font-size: 1.6rem; margin-bottom: 0.5rem; }
.newsletter p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; gap: 8px; }
.newsletter-form input { flex: 1; border: none; padding: 12px 16px; border-radius: var(--r-md); font-size: 0.9rem; outline: none; }
.newsletter-form button { background: var(--dark); color: white; border: none; padding: 12px 20px; border-radius: var(--r-md); font-weight: 700; font-size: 0.875rem; cursor: pointer; flex-shrink: 0; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-3); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--text-1); }

/* HOURS */
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-2); }
.hours-row .time { font-weight: 600; }
.hours-row.today .day { color: var(--red); font-weight: 700; }

/* PAGINATION */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 2rem; }
.page-btn { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid var(--border); background: white; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-2); transition: all 0.15s; }
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); color: white; border-color: var(--red); }

/* PAGE HERO (inner pages) */
.page-hero { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: flex-end; padding-bottom: 2.5rem; }
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { object-position: center 30%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%); }
.page-hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.page-hero-content h1 { color: white; font-size: 2rem; margin-bottom: 0.4rem; }
.page-hero-content p { color: rgba(255,255,255,0.78); font-size: 1rem; }

/* TAG CLOUD */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.78rem; padding: 5px 13px; border-radius: 20px; background: var(--surface-2); color: var(--text-2); cursor: pointer; border: 1px solid var(--border); transition: all 0.15s; }
.tag:hover, .tag.active { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }

/* AMENITIES */
.amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-2); }
.amenity-icon { width: 28px; height: 28px; background: var(--surface-2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* FOOTER */
.footer { background: var(--dark); color: white; padding-top: 3.5rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem 3rem; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.52); margin-top: 1rem; line-height: 1.7; max-width: 270px; }
.footer-logo { font-size: 1.05rem; font-weight: 800; display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.footer-logo-mark { width: 30px; height: 30px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 0.65rem; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.08); max-width: var(--max-w); margin: 0 auto; padding: 1.1rem 1.5rem; }
.footer-disclaimer p { font-size: 0.72rem; color: rgba(255,255,255,0.28); line-height: 1.6; margin: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,0.42); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: var(--max-w); margin: 0 auto; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.36); }

/* ARTICLE DISCLAIMER BOX */
.article-disclaimer { display: flex; gap: 0.85rem; align-items: flex-start; background: #fffbeb; border: 1.5px solid #f59e0b; border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 2rem; }
.article-disclaimer--legal { background: #eff6ff; border-color: #3b82f6; }
.article-disclaimer-icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; }
.article-disclaimer-body { font-size: 0.875rem; color: #78350f; line-height: 1.6; }
.article-disclaimer--legal .article-disclaimer-body { color: #1e3a8a; }
.article-disclaimer-body strong { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; }

/* RATING BARS */
.rating-big { display: flex; align-items: baseline; gap: 4px; }
.rating-big .num { font-size: 2.5rem; font-weight: 800; color: var(--text-1); }
.rating-big .out-of { font-size: 1rem; color: var(--text-3); }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.rating-bar-row .label { font-size: 0.78rem; color: var(--text-2); width: 10px; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 6px; background: var(--surface-3); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--red); border-radius: 3px; }

/* UTILITIES */
.text-red { color: var(--red); }
.text-muted { color: var(--text-2); }
.text-faint { color: var(--text-3); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── CATEGORY TABS BAR ── */
.cat-tabs-bar {
  background: white;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cat-tabs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cat-tab:hover { color: var(--red); }
.cat-tab.active { color: var(--red); border-bottom-color: var(--red); }
.tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  color: var(--text-3);
  line-height: 1.5;
}
.cat-tab.active .tab-count { background: var(--red-light); color: var(--red); }

/* ── EXPANDED LISTING CARDS ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.listing-exp {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.listing-exp[hidden] { display: none !important; }
.listing-exp:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.exp-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 185px;
  gap: 2px;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.exp-photos img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.exp-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.exp-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.exp-rating {
  font-size: 0.8rem;
  color: var(--text-2);
  white-space: nowrap;
  text-align: right;
}
.exp-rating .stars-sm { color: #f59e0b; font-size: 0.78rem; }
.exp-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.25;
}
.exp-address {
  font-size: 0.77rem;
  color: var(--text-3);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.4;
}
.exp-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.exp-tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--text-2);
  font-weight: 500;
}
.exp-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  margin-top: auto;
}
.exp-info {
  font-size: 0.73rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.exp-info.open { color: #2a7a2a; font-weight: 600; }
.exp-info.phone { color: var(--text-2); }
.exp-website {
  font-size: 0.73rem;
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}
.exp-website:hover { text-decoration: underline; }
.btn-sm {
  padding: 6px 14px !important;
  font-size: 0.78rem !important;
  margin-left: auto;
  flex-shrink: 0;
}

/* Search + sort bar */
.dir-search-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.dir-search-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.dir-search-input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-size: 0.875rem;
  outline: none;
  color: var(--text-1);
}
.dir-search-select {
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--text-2);
  background: white;
  outline: none;
  cursor: pointer;
}
.dir-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.75rem;
  flex-wrap: wrap;
  gap: 8px;
}
.dir-results-bar p { font-size: 0.875rem; color: var(--text-2); }

@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-photos { height: 155px; }
}

/* ── ALBANIAN FLAG & EAGLE DECORATIONS ── */

/* Eagle watermark — large ghost eagle behind hero content */
.eagle-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.07;
  width: 360px;
  height: 360px;
  color: white;
}
.eagle-watermark svg { width: 100%; height: 100%; }

/* Albanian flag inline badge — red rect with white eagle */
.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: white;
  border-radius: var(--r-sm);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.flag-badge svg { flex-shrink: 0; }

/* Eagle section accent — red left-border + eagle icon before a heading */
.eagle-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eagle-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 32px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Flag stripe divider — thin red band with centered eagle chip */
.flag-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2.5rem 0;
}
.flag-divider::before,
.flag-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--red-mid);
}
.flag-divider-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Albanian flag mini SVG element — actual flag rectangle */
.albania-flag {
  display: inline-block;
  width: 30px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
  vertical-align: middle;
}

/* Eagle icon accent for category cards */
.cat-eagle-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(196, 30, 58, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero flag ribbon — colored stripe at hero bottom edge */
.hero-flag-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
  opacity: 0.75;
}

/* Footer eagle accent */
.footer-eagle {
  opacity: 0.12;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  width: 80px;
  height: 80px;
  color: white;
  pointer-events: none;
}
.footer-eagle svg { width: 100%; height: 100%; }

/* Stats bar eagle pill */
.stats-eagle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .eagle-watermark { width: 200px; height: 200px; right: -20px; opacity: 0.05; }
  .footer-eagle { display: none; }
}
