/*
Theme Name:  Dunyavi
Theme URI:   https://dunyavi.com
Description: Dunyavi qrup turları platforması üçün xüsusi hazırlanmış tema
Author:      Dunyavi
Version:     1.0.0
Text Domain: dunyavi-theme
*/

/* =============================================================
   CSS VARIABLES
   ============================================================= */
:root {
  --primary:      #0e1b38;
  --primary-dark: #091225;
  --accent:       #f5a623;
  --accent-dark:  #d4891a;
  --white:        #ffffff;
  --light:        #f4f6fa;
  --gray:         #e8ecf2;
  --border:       #dde2ed;
  --text:         #1a2340;
  --text-muted:   #6b7a99;
  --danger:       #e63946;
  --success:      #2ec27e;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 2px 18px rgba(14,27,56,.08);
  --shadow-card:  0 6px 28px rgba(14,27,56,.12);
  --shadow-hover: 0 16px 48px rgba(14,27,56,.2);
  --transition:   .22s ease;
  --font:         'Inter', 'Segoe UI', system-ui, sans-serif;
  --container:    1220px;
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* =============================================================
   LAYOUT
   ============================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
}
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 8px; }

/* =============================================================
   HEADER
   ============================================================= */
#site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo .logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--accent);
}
.site-logo img { height: 38px; width: auto; }

/* Search bar in header */
.header-search {
  flex: 1;
  max-width: 460px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 9px 44px 9px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
  font-family: var(--font);
}
.header-search input::placeholder { color: rgba(255,255,255,.4); }
.header-search input:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--accent);
}
.header-search button {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.5); font-size: 15px;
}
.header-search button:hover { color: var(--accent); }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  transition: all var(--transition);
}
.header-nav a:hover,
.header-nav a.active { color: #fff; background: rgba(255,255,255,.1); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-login {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  background: transparent;
  transition: all var(--transition);
}
.btn-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-register {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: var(--primary);
  border: none;
  transition: all var(--transition);
}
.btn-register:hover { background: var(--accent-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero-section {
  background: var(--primary);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

/* Hero search */
.hero-search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.hero-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--light);
}
.hero-search-input i { color: var(--text-muted); font-size: 16px; flex-shrink: 0; }
.hero-search-input input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  outline: none;
  font-family: var(--font);
}
.hero-search-input input::placeholder { color: var(--text-muted); }
.hero-search-btn {
  padding: 13px 28px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: all var(--transition);
}
.hero-search-btn:hover { background: var(--accent-dark); }
.hero-search-btn i { margin-right: 6px; }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 900; color: var(--accent); }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.5); }

/* =============================================================
   COUNTRY FILTER PILLS
   ============================================================= */
.country-filter {
  background: var(--light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.country-filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.country-filter-inner::-webkit-scrollbar { display: none; }
.country-filter-label { font-size: 13px; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.country-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: #fff;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.country-pill img { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; }
.country-pill:hover,
.country-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.country-pill span.count {
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
}

/* =============================================================
   SECTION HEADERS
   ============================================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* =============================================================
   TOUR CARDS
   ============================================================= */
.tours-section { padding: 52px 0; }
.tours-section + .tours-section { padding-top: 0; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tours-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tours-grid--5 { grid-template-columns: repeat(5, 1fr); }

.tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.tour-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.tour-card__thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.tour-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tour-card:hover .tour-card__thumb img { transform: scale(1.07); }

.tour-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-new  { background: var(--accent);  color: var(--primary); }
.badge-hot  { background: var(--danger);  color: #fff; }
.badge-sale { background: var(--success); color: #fff; }

.tour-card__favorite {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.85);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.tour-card__favorite:hover { background: #fff; color: var(--danger); }

.tour-card__duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.5);
  color: #fff; border-radius: 20px;
  padding: 3px 10px; font-size: 11px;
  backdrop-filter: blur(4px);
}

.tour-card__body { padding: 16px; }

.tour-card__country {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 5px;
}

.tour-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__guide {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.guide-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gray) center/cover no-repeat;
  flex-shrink: 0;
}
.guide-name { font-size: 12px; color: var(--text-muted); }
.guide-rating { margin-left: auto; display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--accent); font-weight: 700; }

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray);
}
.tour-card__meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.tour-card__meta i { color: var(--accent); }
.tour-card__price { text-align: right; }
.tour-card__price .price-from { font-size: 10px; color: var(--text-muted); display: block; }
.tour-card__price strong { font-size: 18px; font-weight: 900; color: var(--primary); }
.tour-card__price small { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* =============================================================
   GUIDE CARDS
   ============================================================= */
.guides-section { padding: 52px 0; background: var(--light); }

.guide-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.guide-card__photo {
  height: 160px;
  background: var(--gray) center/cover no-repeat;
  position: relative;
}
.guide-card__type {
  position: absolute;
  bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.guide-card__body { padding: 24px 16px 16px; }
.guide-card__name { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.guide-card__stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.guide-card__stats span { display: flex; align-items: center; gap: 4px; }
.guide-card__stats i { color: var(--accent); }
.guide-card__btn {
  display: block;
  padding: 9px;
  background: var(--light);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--transition);
}
.guide-card__btn:hover { background: var(--primary); color: #fff; }

/* =============================================================
   FEATURED BANNER
   ============================================================= */
.featured-banner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  min-height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.featured-banner__bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
}
.featured-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,27,56,.95) 45%, rgba(14,27,56,.3) 100%);
}
.featured-banner__content {
  position: relative; z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 520px;
}
.featured-banner__tag {
  background: var(--accent);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 14px;
}
.featured-banner__title {
  font-size: 26px; font-weight: 900; color: #fff;
  line-height: 1.3; margin-bottom: 12px;
}
.featured-banner__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.featured-banner__meta i { color: var(--accent); margin-right: 4px; }
.featured-banner__price { font-size: 28px; font-weight: 900; color: var(--accent); margin-bottom: 20px; }
.featured-banner__price small { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); }

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-section { padding: 64px 0; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 100%);
  border-top: 2px dashed var(--border);
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step__icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(245,166,35,.35);
}
.how-step__num {
  position: absolute;
  top: -6px; right: calc(50% - 42px);
  width: 22px; height: 22px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.how-step h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================================
   CTA BANNER
   ============================================================= */
.cta-section {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -100px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,166,35,.08);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { font-size: 32px; font-weight: 900; color: #fff; max-width: 500px; line-height: 1.25; }
.cta-inner h2 span { color: var(--accent); }
.cta-inner p { color: rgba(255,255,255,.55); margin-top: 10px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cta-btn-primary {
  padding: 15px 32px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  transition: all var(--transition);
  white-space: nowrap;
}
.cta-btn-primary:hover { background: var(--accent-dark); }
.cta-btn-outline {
  padding: 15px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.cta-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================================
   FOOTER
   ============================================================= */
#site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.55);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { font-size: 26px; font-weight: 900; letter-spacing: 3px; color: var(--accent); display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary); }

.footer-col h4 {
  font-size: 14px; font-weight: 800;
  color: #fff; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a i { font-size: 11px; opacity: .5; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   PAGE TEMPLATE — Full width (auth/dashboard)
   ============================================================= */
.page-template-fullwidth #site-header { position: relative; }
.page-template-fullwidth .page-content { padding: 0; }
.page-template-fullwidth #site-footer { display: none; }

/* =============================================================
   PAGINATION
   ============================================================= */
.dv-pagination { text-align: center; padding: 40px 0 0; }
.dv-pagination .page-numbers {
  display: inline-block; padding: 9px 15px; margin: 0 3px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 14px; transition: all var(--transition);
}
.dv-pagination .page-numbers.current,
.dv-pagination .page-numbers:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* =============================================================
   BACK TO TOP
   ============================================================= */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--primary);
  border: none; border-radius: 50%;
  font-size: 16px;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(245,166,35,.4);
  z-index: 999;
  transition: all var(--transition);
}
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top.visible { display: flex; }

/* =============================================================
   LOADING SKELETON
   ============================================================= */
.skeleton {
  background: linear-gradient(90deg, var(--gray) 25%, #eee 50%, var(--gray) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .tours-grid     { grid-template-columns: repeat(3, 1fr); }
  .tours-grid--5  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .how-steps      { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .header-nav    { display: none; }
  .hamburger     { display: flex; }
  .hero-content h1 { font-size: 30px; }
  .hero-search-box { flex-direction: column; }
  .hero-stats      { gap: 20px; }
  .tours-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tours-grid--3   { grid-template-columns: repeat(2, 1fr); }
  .cta-inner       { flex-direction: column; text-align: center; }
  .cta-inner h2    { font-size: 24px; }
  .cta-actions     { flex-wrap: wrap; justify-content: center; }
  .featured-banner__content { padding: 24px; }
  .featured-banner__title   { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-menu { display: flex; }
}

@media (max-width: 480px) {
  .tours-grid      { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
  .container       { padding: 0 16px; }
  .footer-grid     { grid-template-columns: 1fr; }
}

/* =============================================================
   MOBILE MENU
   ============================================================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-btns { display: flex; gap: 10px; padding-top: 16px; }
.mobile-menu .mobile-btns a { flex: 1; text-align: center; padding: 11px; border-radius: 8px; font-weight: 700; border-bottom: none; }
.mobile-menu .mobile-btns .btn-login { border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.mobile-menu .mobile-btns .btn-register { background: var(--accent); color: var(--primary); }
