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

:root {
  --bg: #1A1714;
  --bg-surface: #242019;
  --bg-elevated: #2C2720;
  --gold: #D4A94B;
  --gold-light: #E8C86A;
  --gold-deep: #B8912E;
  --text: #FAF8F3;
  --text-secondary: #A09888;
  --border-gold: rgba(212, 169, 75, 0.15);
  --glow: rgba(212, 169, 75, 0.08);
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 0 20px rgba(212, 169, 75, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --nav-height: 64px;
  --header-height: 56px;
  --tabs-height: 48px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: calc(var(--nav-height) + 16px);
  position: relative;
  overflow-x: hidden;
}

/* Hide scrollbar mobile, thin gold desktop */
body::-webkit-scrollbar {
  display: none;
}

@media (min-width: 481px) {
  body::-webkit-scrollbar {
    display: block;
    width: 6px;
  }
  body::-webkit-scrollbar-track {
    background: var(--bg);
  }
  body::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 3px;
  }
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-deep) var(--bg);
  }
}

/* ===== HEADER — PREMIUM CENTERED ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, #1E1A15 0%, var(--bg) 100%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.header.scrolled .header-full {
  padding: 8px 16px 6px;
}

.header.scrolled .header-logo-img {
  width: 36px;
  height: 34px;
}

.header.scrolled .header-title {
  font-size: 0.95rem;
}

.header.scrolled .header-subtitle {
  font-size: 0.5rem;
  letter-spacing: 3px;
}

/* Gold shimmer line at very top */
.header-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8912E 20%, #E8C86A 50%, #B8912E 80%, transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes goldShine {
  0% { background-position: 100% 50%; }
  40% { background-position: 0% 50%; }
  60% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Main header content — centered layout */
.header-full {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 8px;
  position: relative;
  transition: padding 0.3s;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-logo-img {
  width: 52px;
  height: 50px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212, 169, 75, 0.4));
  transition: all 0.3s;
}

.header-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #9A7520 0%, #D4A94B 20%, #F5E6A3 40%, #FFF8DC 50%, #F5E6A3 60%, #D4A94B 80%, #9A7520 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 3s ease-in-out infinite;
  transition: font-size 0.3s;
}

.header-subtitle {
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s;
}

/* Search — absolute right */
.header-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(212, 169, 75, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  color: var(--gold);
}

.header-search:active {
  border-color: var(--gold);
  background: rgba(212, 169, 75, 0.1);
  box-shadow: 0 0 16px rgba(212, 169, 75, 0.2);
  transform: translateY(-50%) scale(0.93);
}

.header-search svg {
  width: 16px;
  height: 16px;
}

/* Bottom ornament bar */
.header-ornament {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-deep) 30%, var(--gold-light) 50%, var(--gold-deep) 70%, transparent 95%);
  opacity: 0.4;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  padding: 6px 32px 0;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-gold);
  margin-top: -12%;
  margin-bottom: -8%;
}

/* ===== BURGER MENU ===== */
.header-burger {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(212, 169, 75, 0.25);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.header-burger:active {
  border-color: var(--gold);
  background: rgba(212, 169, 75, 0.1);
}

.header-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s;
}

.header-burger span:nth-child(2) {
  width: 12px;
}

/* Side menu overlay */
.side-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 300;
  backdrop-filter: blur(4px);
}

.side-menu-overlay.show {
  display: block;
}

/* Side menu panel */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #1E1A15 0%, #141210 100%);
  z-index: 301;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-right: 1px solid var(--border-gold);
}

.side-menu-overlay.show .side-menu {
  left: 0;
}

.side-menu-header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-menu-header img {
  width: 40px;
  height: 38px;
}

.side-menu-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-menu-header-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #B8912E, #E8C86A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.side-menu-header-sub {
  font-size: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.side-menu-close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 169, 75, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.side-menu-close:active {
  border-color: var(--gold);
  color: var(--gold);
}

.side-menu-nav {
  padding: 16px 0;
}

.side-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.side-menu-item:active {
  background: rgba(212, 169, 75, 0.06);
  border-left-color: var(--gold);
}

.side-menu-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.side-menu-item span {
  flex: 1;
}

.side-menu-divider {
  height: 1px;
  background: var(--border-gold);
  margin: 8px 20px;
}

/* ===== CATEGORY TABS ===== */
.tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--bg);
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--border-gold);
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(212, 169, 75, 0.35);
  white-space: nowrap;
  background: transparent;
  color: var(--gold);
  user-select: none;
}

.tab:active {
  transform: scale(0.96);
}

.tab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212, 169, 75, 0.2);
}

.tab:not(.active):hover {
  border-color: var(--gold-light);
  background: rgba(212, 169, 75, 0.06);
  color: var(--gold-light);
}

/* ===== SECTIONS ===== */
.section {
  padding: 20px 16px 8px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

/* ===== POPULAR (premium horizontal scroll) ===== */
.popular-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.popular-scroll::-webkit-scrollbar {
  display: none;
}

.popular-card {
  flex-shrink: 0;
  width: 200px;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition);
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-gold);
}

.popular-card:active {
  transform: scale(0.97);
}

.popular-card-img {
  width: 200px;
  height: 240px;
  overflow: hidden;
  background: var(--bg-surface);
  position: relative;
}

.popular-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.popular-card:active .popular-card-img img {
  transform: scale(1.05);
}

/* Dark gradient overlay from bottom */
.popular-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.9) 0%, rgba(10, 8, 5, 0.5) 40%, transparent 100%);
  pointer-events: none;
}

/* Name positioned OVER image at bottom */
.popular-card-name {
  position: absolute;
  bottom: 32px;
  left: 14px;
  right: 14px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.popular-card-cat {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.popular-card-cat {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== CTA BUTTON ===== */
.cta-wrap {
  padding: 16px 16px 8px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #B8912E, #D4A94B, #E8C86A);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212, 169, 75, 0.3);
}

.cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(212, 169, 75, 0.4);
}

.cta-btn:hover {
  box-shadow: 0 6px 28px rgba(212, 169, 75, 0.35);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== RECENT LIST ===== */
.recent-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  border: 1px solid rgba(212, 169, 75, 0.08);
  border-left: 3px solid var(--gold);
}

.recent-item:active {
  transform: scale(0.98);
  box-shadow: var(--card-shadow-hover);
}

.recent-item:hover {
  box-shadow: var(--card-shadow-hover);
}

.recent-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: var(--bg);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-info {
  flex: 1;
  min-width: 0;
}

.recent-name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
  color: var(--text);
}

.recent-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg);
  border: 1px solid rgba(212, 169, 75, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===== CATEGORY PAGE LIST ===== */
.cat-page-title {
  padding: 20px 16px 4px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.cat-page-subtitle {
  padding: 0 16px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== CATEGORY LIST (PREMIUM CARDS) ===== */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 20px;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #242019 0%, #2A2520 50%, #242019 100%);
  border-radius: 16px;
  padding: 14px 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #FAF8F3;
  transition: all 0.25s;
  position: relative;
  border: 1px solid rgba(212, 169, 75, 0.08);
  overflow: hidden;
}

/* Subtle gold shimmer on left edge */
.cat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #B8912E, #D4A94B, #E8C86A, #D4A94B, #B8912E);
  border-radius: 16px 0 0 16px;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.cat-item:active {
  transform: scale(0.985);
  border-color: rgba(212, 169, 75, 0.2);
}

.cat-item:active::before {
  opacity: 1;
}

.cat-num {
  flex-shrink: 0;
  width: 38px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #B8912E, #E8C86A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1;
}

.cat-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212, 169, 75, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-info {
  flex: 1;
  min-width: 0;
}

.cat-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #FAF8F3;
}

.cat-desc {
  font-size: 0.73rem;
  color: #A09888;
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #D4A94B;
}

.cat-rating svg {
  width: 13px;
  height: 13px;
  fill: #D4A94B;
}

.cat-city {
  font-size: 0.7rem;
  color: #7A6E60;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}

.cat-city::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D4A94B;
  opacity: 0.4;
}

.cat-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 169, 75, 0.3);
  transition: color 0.25s;
}

.cat-item:active .cat-arrow {
  color: #D4A94B;
}

.cat-arrow svg {
  width: 16px;
  height: 16px;
}

/* ===== DETAIL PAGE (PREMIUM) ===== */
.detail-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,23,20,0.5) 0%,
    transparent 30%,
    transparent 40%,
    rgba(26,23,20,0.7) 70%,
    rgba(26,23,20,0.95) 100%
  );
}

.detail-back {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(26, 23, 20, 0.6);
  border: 1px solid rgba(212, 169, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gold);
  z-index: 2;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
}

.detail-back:active {
  transform: scale(0.93);
  background: rgba(212, 169, 75, 0.15);
}

.detail-back svg {
  width: 20px;
  height: 20px;
}

.detail-hero-badge {
  position: absolute;
  top: 16px;
  right: 14px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #1B6B3A, #2D8B4E);
  color: #FAF8F3;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.detail-hero-rating {
  position: absolute;
  bottom: 70px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(26, 23, 20, 0.7);
  border: 1px solid rgba(212, 169, 75, 0.3);
  border-radius: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.detail-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 16px;
  z-index: 2;
}

.detail-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.detail-hero-cat {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Body */
.detail-body {
  padding: 0 16px 20px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

/* Quick action buttons */
.detail-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 20px;
}

.detail-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex: 1;
}

.detail-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.detail-action:active .detail-action-icon {
  background: rgba(212, 169, 75, 0.1);
  border-color: var(--gold);
  transform: scale(0.93);
}

.detail-action-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.detail-action span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Sections */
.detail-section {
  margin-bottom: 20px;
}

.detail-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.detail-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Info card */
.detail-info-card {
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.detail-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(212, 169, 75, 0.06);
}

.detail-info-item:last-child {
  border-bottom: none;
}

.detail-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.detail-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.detail-info-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* CTA button */
.detail-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #B8912E 0%, #D4A94B 50%, #E8C86A 100%);
  color: #1A1714;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(212, 169, 75, 0.3);
  letter-spacing: 0.5px;
}

.detail-cta:active {
  transform: scale(0.97);
  box-shadow: 0 2px 16px rgba(212, 169, 75, 0.5);
}

.detail-cta svg {
  width: 18px;
  height: 18px;
}

/* ===== FORMS ===== */
.page-title {
  padding: 20px 16px 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.page-subtitle {
  padding: 0 16px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-wrap {
  padding: 0 16px 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1.5px solid rgba(212, 169, 75, 0.2);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 75, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 2px dashed rgba(212, 169, 75, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--transition), background var(--transition);
  background: var(--bg-surface);
}

.form-file-label:active {
  background: var(--bg-elevated);
  border-color: var(--gold);
}

.form-file-label input {
  display: none;
}

.form-file-label svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #B8912E, #D4A94B, #E8C86A);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212, 169, 75, 0.3);
}

.form-submit:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(212, 169, 75, 0.4);
}

.form-submit:hover {
  box-shadow: 0 6px 28px rgba(212, 169, 75, 0.35);
}

/* ===== NEWS ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 20px;
}

.news-item {
  background: var(--bg-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  border: 1px solid var(--border-gold);
}

.news-item:active {
  transform: scale(0.985);
}

.news-item:hover {
  box-shadow: var(--card-shadow-hover);
}

.news-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 14px;
}

.news-date {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}

.news-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--text);
}

.news-excerpt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== CONTACT ===== */
.contact-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0 16px 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-gold);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 169, 75, 0.08);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

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

.contact-row svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-row a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.contact-row a:hover {
  color: var(--gold-light);
}

/* ===== BOTTOM NAV (PREMIUM) ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: var(--nav-height);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0);
  border-top: 1px solid var(--border-gold);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding: 8px 16px;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  border-radius: 0 0 2px 2px;
  transition: transform var(--transition);
}

.nav-item.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  color: #6B6358;
  transition: color var(--transition), transform 0.2s;
}

.nav-item span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6B6358;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav-item.active svg {
  color: var(--gold);
}

.nav-item.active span {
  color: var(--gold);
}

.nav-item:not(.active):active svg {
  color: var(--gold-light);
  transform: scale(0.9);
}

.nav-item:not(.active):active span {
  color: var(--gold-light);
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-msg.show {
  display: block;
}

.success-msg .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(212, 169, 75, 0.25);
}

.success-msg .check svg {
  width: 32px;
  height: 32px;
}

.success-msg h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.success-msg p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== ORNAMENT LINE ===== */
.ornament-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-deep), transparent);
  margin: 0 16px;
  border-radius: 2px;
  opacity: 0.35;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.modal-overlay.show {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  padding: 0 0 env(safe-area-inset-bottom, 16px);
  animation: slideUp 0.3s ease-out;
  max-height: 85vh;
  overflow-y: auto;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light), var(--gold), var(--gold-deep)) 1;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--border-gold);
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 169, 75, 0.3);
  background: transparent;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition);
}

.modal-close:active {
  background: rgba(212, 169, 75, 0.1);
  transform: scale(0.95);
}

.modal-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-body .modal-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 4px;
}

.modal-body .form-input,
.modal-body .form-select,
.modal-body .form-textarea {
  background: var(--bg-surface);
  border-color: rgba(212, 169, 75, 0.2);
  color: var(--text);
}

.modal-body .form-input:focus,
.modal-body .form-select:focus,
.modal-body .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 75, 0.1);
}

.modal-body .form-textarea {
  min-height: 70px;
}

.modal-body .form-submit {
  background: linear-gradient(135deg, #B8912E, #D4A94B, #E8C86A);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(212, 169, 75, 0.3);
}

.modal-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.modal-success .success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--bg);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 0 20px rgba(212, 169, 75, 0.25);
}

.modal-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== UTILITIES ===== */
.hidden { display: none !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.35s ease-out;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
  backdrop-filter: blur(8px);
}

.search-overlay.show {
  display: flex;
}

.search-box {
  width: 100%;
  max-width: 440px;
  margin: 0 20px;
}

.search-box input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  box-shadow: 0 0 20px rgba(212, 169, 75, 0.15);
}

.search-box input::placeholder {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 481px) {
  body {
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  }
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(212, 169, 75, 0.3);
  color: var(--text);
}

::-moz-selection {
  background: rgba(212, 169, 75, 0.3);
  color: var(--text);
}

/* ===== LINKS DEFAULT ===== */
a {
  color: var(--gold);
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* ===== IMAGES LOADING ===== */
img {
  background: var(--bg-elevated);
}

/* ===== HALAL BADGE ===== */
.halal-badge {
  background: linear-gradient(135deg, #1B6B3A, #2D8B4E) !important;
  color: #FAF8F3 !important;
  border: 1px solid rgba(45, 139, 78, 0.5) !important;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* ===== PREMIUM ANIMATIONS ===== */

/* Logo entrance — pulse glow */
@keyframes logoEntrance {
  0% { opacity: 0; transform: scale(0.7); filter: drop-shadow(0 0 0 transparent); }
  50% { opacity: 1; transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(212, 169, 75, 0.5)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 2px 8px rgba(212, 169, 75, 0.4)); }
}

.header-logo-img {
  animation: logoEntrance 1s ease-out;
}

/* Header title fade slide */
@keyframes titleSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-title {
  animation: titleSlide 0.8s ease-out 0.3s both;
}

.header-subtitle {
  animation: titleSlide 0.8s ease-out 0.5s both;
}

/* Banner entrance — scale + fade */
@keyframes bannerReveal {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* Subtle banner float */
@keyframes bannerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-banner img {
  animation: bannerReveal 1.2s ease-out 0.4s both, bannerFloat 4s ease-in-out 2s infinite;
}

/* Cards stagger entrance */
@keyframes cardSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.recent-item { animation: cardSlideUp 0.5s ease-out both; }
.recent-item:nth-child(1) { animation-delay: 0.1s; }
.recent-item:nth-child(2) { animation-delay: 0.2s; }
.recent-item:nth-child(3) { animation-delay: 0.3s; }
.recent-item:nth-child(4) { animation-delay: 0.4s; }
.recent-item:nth-child(5) { animation-delay: 0.5s; }
.recent-item:nth-child(6) { animation-delay: 0.6s; }

/* CTA button pulse glow */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(212, 169, 75, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(212, 169, 75, 0.5), 0 0 40px rgba(212, 169, 75, 0.15); }
}

.cta-btn {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* Tab entrance */
@keyframes tabFade {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.tab { animation: tabFade 0.4s ease-out both; }
.tab:nth-child(1) { animation-delay: 0.1s; }
.tab:nth-child(2) { animation-delay: 0.15s; }
.tab:nth-child(3) { animation-delay: 0.2s; }
.tab:nth-child(4) { animation-delay: 0.25s; }
.tab:nth-child(5) { animation-delay: 0.3s; }

/* Popular cards entrance */
.popular-card { animation: cardSlideUp 0.6s ease-out both; }
.popular-card:nth-child(1) { animation-delay: 0.15s; }
.popular-card:nth-child(2) { animation-delay: 0.25s; }
.popular-card:nth-child(3) { animation-delay: 0.35s; }
.popular-card:nth-child(4) { animation-delay: 0.45s; }
.popular-card:nth-child(5) { animation-delay: 0.55s; }

/* Side menu slide */
.side-menu-overlay.show .side-menu {
  animation: slideRight 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Gold line shimmer on scroll */
.header-gold-line {
  position: relative;
  overflow: hidden;
}

.header-gold-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: lineShine 3s ease-in-out infinite;
}

@keyframes lineShine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Section titles */
.section-title {
  animation: titleSlide 0.6s ease-out both;
}

/* Modal entrance */
@keyframes modalSlideUp {
  from { transform: translateY(100%); opacity: 0.5; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-overlay.show .modal {
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== AUTH / PROFILE PAGE ===== */
.auth-section,
.profile-section {
  padding: 32px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gold gradient avatar circle */
.auth-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 32px rgba(212, 169, 75, 0.35), 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.auth-avatar svg {
  width: 38px;
  height: 38px;
  stroke: var(--bg);
  stroke-width: 1.5;
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Two pill tabs */
.auth-tabs {
  display: flex;
  gap: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-pill);
  padding: 4px;
  border: 1px solid var(--border-gold);
  margin-bottom: 24px;
  width: 100%;
  max-width: 320px;
}

.auth-tab {
  flex: 1;
  padding: 9px 16px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: var(--bg);
  box-shadow: 0 2px 12px rgba(212, 169, 75, 0.3);
}

.auth-tab:not(.active):active {
  color: var(--gold);
}

/* Auth form full width */
.auth-form {
  width: 100%;
  padding: 0;
}

/* Forgot password link */
.auth-forgot-wrap {
  text-align: right;
  margin-top: -6px;
  margin-bottom: 14px;
}

.auth-forgot {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.auth-forgot:hover {
  color: var(--gold-light);
}

/* "или" divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}

.auth-divider span {
  flex-shrink: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Social login buttons row */
.social-login-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--bg-surface);
  border: 1.5px solid rgba(212, 169, 75, 0.2);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: rgba(212, 169, 75, 0.45);
  background: var(--bg-elevated);
}

.social-btn:active {
  transform: scale(0.97);
  border-color: var(--gold);
}

.social-btn svg {
  flex-shrink: 0;
}

/* ===== PROFILE SECTION ===== */
.profile-avatar {
  margin-bottom: 16px;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-align: center;
}

.profile-email {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.profile-divider {
  width: 100%;
  margin-bottom: 20px;
}

.profile-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  text-align: left;
  box-shadow: var(--card-shadow);
}

.profile-menu-item:hover {
  border-color: rgba(212, 169, 75, 0.35);
  box-shadow: var(--card-shadow-hover);
}

.profile-menu-item:active {
  transform: scale(0.985);
  box-shadow: var(--card-shadow-hover);
}

.profile-menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 169, 75, 0.1);
  border: 1px solid rgba(212, 169, 75, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-menu-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.profile-menu-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.profile-menu-arrow {
  flex-shrink: 0;
  color: rgba(212, 169, 75, 0.35);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.profile-menu-arrow svg {
  width: 16px;
  height: 16px;
}

.profile-menu-item:hover .profile-menu-arrow {
  color: var(--gold);
}

/* Danger (logout) variant */
.profile-menu-item--danger .profile-menu-icon {
  background: rgba(220, 60, 60, 0.1);
  border-color: rgba(220, 60, 60, 0.15);
}

.profile-menu-item--danger .profile-menu-icon svg {
  color: #DC3C3C;
}

.profile-menu-item--danger .profile-menu-label {
  color: #DC3C3C;
}

.profile-menu-item--danger:hover {
  border-color: rgba(220, 60, 60, 0.25);
}

.profile-menu-item--danger .profile-menu-arrow {
  color: rgba(220, 60, 60, 0.3);
}

.profile-menu-item--danger:hover .profile-menu-arrow {
  color: #DC3C3C;
}
