/* ============================================================
   PASER CULINARY HUB — LUXURY EDITORIAL STYLESHEET v2.0
   Inspired by: Kinfolk, Michelin Guide, National Geographic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — PREMIUM WARM PALETTE
   ============================================================ */
:root {
    --primary-brown: #8B5E34;
    --dark-brown: #5C3B1E;
    --light-brown: #B08968;
    --gold-accent: #D4A373;
    --gold-dark: #B8864E;
    --cream: #F7F1E8;
    --soft-cream: #FFFDF9;
    --warm-white: #FAF7F2;
    --text-dark: #2B2B2B;
    --text-secondary: #7A6A58;
    --border-color: #E2D5C3;
    --success-color: #198754;
    --danger-color: #DC3545;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;

    --border-radius: 20px;
    --border-radius-lg: 28px;
    --transition-default: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 16px rgba(92, 59, 30, 0.06);
    --shadow-md: 0 12px 40px rgba(92, 59, 30, 0.10);
    --shadow-lg: 0 30px 80px rgba(92, 59, 30, 0.14);
    --shadow-xl: 0 50px 100px rgba(92, 59, 30, 0.18);
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#page-loading-screen {
    position: fixed;
    inset: 0;
    background: var(--dark-brown);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
#page-loading-screen.loaded {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.loading-logo {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--soft-cream);
    letter-spacing: -0.5px;
    opacity: 0;
    animation: loadLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.loading-logo span {
    font-family: var(--font-subheading);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-accent);
}
.loading-bar-track {
    width: 200px;
    height: 2px;
    background: rgba(255, 253, 249, 0.15);
    border-radius: 999px;
    overflow: hidden;
    opacity: 0;
    animation: loadLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-accent), var(--light-brown));
    border-radius: 999px;
    animation: loadBarFill 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.loading-tagline {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 253, 249, 0.5);
    letter-spacing: 2px;
    opacity: 0;
    animation: loadLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
@keyframes loadLogoIn {
    to { opacity: 1; }
}
@keyframes loadBarFill {
    to { width: 100%; }
}

/* ============================================================
   FLOATING ANIMATIONS
   ============================================================ */
@keyframes floatY {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(1.5deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatX {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(14px) rotate(2deg); }
}
@keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-12px) rotate(5deg) scale(1.03); }
    75% { transform: translateY(-6px) rotate(-4deg) scale(0.98); }
}
@keyframes floatPulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
    50% { transform: scale(1.08) translateY(-10px); opacity: 0.9; }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes parallaxBg {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: initial;
}
body {
    background-color: var(--soft-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageIn 0.6s ease 0.1s both;
}
h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}
.subheading-font {
    font-family: var(--font-subheading);
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
}
.font-body { font-family: var(--font-body); }
.text-gold { color: var(--gold-accent); }

img { display: block; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.custom-container {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}
.section-padding {
    padding-top: 96px;
    padding-bottom: 96px;
}
@media (min-width: 992px) {
    .section-padding { padding-top: 128px; padding-bottom: 128px; }
}
.max-width-md { max-width: 720px; }
.max-width-sm { max-width: 560px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 99998;
    background: transparent;
}
#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-brown) 0%, var(--gold-accent) 60%, var(--light-brown) 100%);
    transition: width 0.08s linear;
    box-shadow: 0 0 8px rgba(212, 163, 115, 0.5);
}

/* ============================================================
   NAVBAR — GLASS BLUR PREMIUM
   ============================================================ */
.premium-navbar {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 28px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.premium-navbar.scrolled {
    padding: 14px 0;
    background-color: rgba(255, 253, 249, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(226, 213, 195, 0.6);
    box-shadow: 0 8px 32px rgba(92, 59, 30, 0.05);
}
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--dark-brown) !important;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: var(--transition-default);
}
.navbar-brand:hover { opacity: 0.8; }
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 16px;
    padding: 8px 0 !important;
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition-default);
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary-brown), var(--gold-accent));
    transition: var(--transition-default);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-brown) !important; }

/* ============================================================
   PREMIUM BUTTONS
   ============================================================ */
.btn-premium {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    padding: 15px 34px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--soft-cream);
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(139, 94, 52, 0.25);
}
.btn-premium-primary:hover {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #3D2410 100%);
    color: var(--soft-cream);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(92, 59, 30, 0.32);
}
.btn-premium-secondary {
    background-color: transparent;
    color: var(--primary-brown);
    border: 1.5px solid var(--primary-brown);
}
.btn-premium-secondary:hover {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--soft-cream);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px rgba(139, 94, 52, 0.22);
}

/* ============================================================
   HERO SECTION — 90VH+ PREMIUM
   ============================================================ */
.hero-section {
    min-height: 93vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--soft-cream) 0%, var(--cream) 55%, #EDE4D6 100%);
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(212, 163, 115, 0.08) 0%, transparent 65%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: rgba(212, 163, 115, 0.15);
    color: var(--primary-brown);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 163, 115, 0.3);
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--dark-brown);
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
}
.hero-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: floatY 7s ease-in-out infinite;
    transform-origin: center;
}
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(92, 59, 30, 0.18) 100%);
    z-index: 1;
    border-radius: inherit;
}
.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img-wrapper:hover .hero-img { transform: scale(1.04); }

/* Floating decorative elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.55;
}
.float-1 {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
    animation: floatPulse 10s ease-in-out infinite;
}
.float-2 {
    width: 240px;
    height: 240px;
    bottom: -60px;
    right: 5%;
    background: radial-gradient(circle, rgba(139, 94, 52, 0.08) 0%, transparent 70%);
    animation: floatPulse 8s ease-in-out 2s infinite;
}
.float-3 {
    width: 160px;
    height: 160px;
    top: 30%;
    left: 48%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.07) 0%, transparent 70%);
    animation: floatRotate 12s ease-in-out 1s infinite;
}

/* ============================================================
   SECTION LABELS / EYEBROWS
   ============================================================ */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 12px;
}

/* ============================================================
   EDITORIAL SHOWCASE CARDS (Kuliner Khas)
   ============================================================ */
.editorial-showcase-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 520px;
    cursor: pointer;
    transition: var(--transition-default);
    box-shadow: var(--shadow-md);
}
.editorial-showcase-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-xl);
}
.editorial-showcase-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.editorial-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-showcase-card:hover .editorial-showcase-img {
    transform: scale(1.1);
}
.editorial-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(34, 18, 5, 0.88) 0%,
        rgba(34, 18, 5, 0.4) 45%,
        rgba(34, 18, 5, 0.0) 75%);
    transition: background 0.5s ease;
}
.editorial-showcase-card:hover .editorial-showcase-overlay {
    background: linear-gradient(to top,
        rgba(34, 18, 5, 0.92) 0%,
        rgba(34, 18, 5, 0.55) 55%,
        rgba(34, 18, 5, 0.05) 80%);
}
.editorial-showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px;
    transform: translateY(8px);
    transition: var(--transition-default);
}
.editorial-showcase-card:hover .editorial-showcase-content {
    transform: translateY(0);
}
.editorial-showcase-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-accent);
    border: 1px solid rgba(212, 163, 115, 0.5);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.editorial-showcase-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #FFFDF9;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.editorial-showcase-desc {
    font-size: 0.88rem;
    color: rgba(255, 253, 249, 0.75);
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.editorial-showcase-card:hover .editorial-showcase-desc {
    opacity: 1;
    transform: translateY(0);
}
.editorial-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}
.editorial-showcase-link:hover { gap: 14px; color: #FFFDF9; }

/* ============================================================
   EDITOR'S CHOICE (Magazine Feature)
   ============================================================ */
.editor-choice-magazine {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 640px;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.editor-choice-img-container {
    overflow: hidden;
    height: 100%;
}
.editor-choice-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.editor-choice-magazine:hover .editor-choice-img-cover { transform: scale(1.04); }
.editor-choice-body-content {
    background: linear-gradient(145deg, var(--cream) 0%, #EEE4D4 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 1px solid var(--border-color);
}

/* ============================================================
   MAGAZINE ARTICLE CARDS
   ============================================================ */
.magazine-article-card {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(226, 213, 195, 0.5);
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}
.magazine-article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 115, 0.25);
}
.magazine-article-img-wrapper {
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}
.magazine-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.magazine-article-card:hover .magazine-article-img { transform: scale(1.08); }
.magazine-article-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.magazine-article-title {
    font-size: 1.3rem;
    line-height: 1.38;
    margin: 10px 0 14px;
    font-weight: 700;
}
.magazine-article-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}
.magazine-article-title a:hover { color: var(--primary-brown); }
.editorial-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-brown);
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: auto;
}
.editorial-card-link:hover { gap: 14px; color: var(--dark-brown); }

/* ============================================================
   TRENDING STORIES SIDEBAR
   ============================================================ */
.trending-stories-card {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.trending-story-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(226, 213, 195, 0.6);
    transition: var(--transition-fast);
    cursor: pointer;
}
.trending-story-item:last-child { border-bottom: none; padding-bottom: 0; }
.trending-story-item:first-child { padding-top: 0; }
.trending-story-item:hover { transform: translateX(6px); }
.trending-story-thumb-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}
.trending-story-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trending-story-item:hover .trending-story-thumb { transform: scale(1.1); }
.trending-story-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}
.trending-story-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}
.trending-story-title a:hover { color: var(--primary-brown); }

/* ============================================================
   LUXURY DESTINATION CARDS (Homepage Favorites)
   ============================================================ */
.luxury-destination-card {
    background: var(--warm-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}
.luxury-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 115, 0.3);
}
.luxury-dest-img-wrapper {
    overflow: hidden;
    height: 320px;
}
@media (min-width: 768px) {
    .luxury-dest-img-wrapper { height: 100%; min-height: 280px; }
}
.luxury-dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}
.luxury-destination-card:hover .luxury-dest-img { transform: scale(1.07); }
.luxury-dest-body { padding: 40px 44px; }
@media (min-width: 992px) { .luxury-dest-body { padding: 48px 52px; } }

/* ============================================================
   MICHELIN GUIDE RECOMMENDATION CARDS
   ============================================================ */
.michelin-card {
    background: var(--warm-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.michelin-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 163, 115, 0.35);
}
.michelin-card-img-wrapper {
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.michelin-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}
.michelin-card:hover .michelin-card-img { transform: scale(1.1); }
.michelin-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(8px);
    color: var(--primary-brown);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(226, 213, 195, 0.7);
}
.michelin-rating-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--gold-accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 6px 16px rgba(92, 59, 30, 0.3);
}
.michelin-rating-badge i { font-size: 0.85rem; }
.michelin-card-body {
    padding: 30px 32px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.michelin-card-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.michelin-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    flex-grow: 1;
}
.michelin-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    font-size: 0.84rem;
    color: var(--text-secondary);
}
.michelin-card-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.michelin-card-footer-item i {
    color: var(--gold-accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   PREMIUM NEWSLETTER
   ============================================================ */
.premium-newsletter-wrapper {
    background: linear-gradient(135deg, var(--cream) 0%, #E8DDD0 55%, #DDD0BF 100%);
    border-radius: 36px;
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 94, 52, 0.1);
    box-shadow: var(--shadow-md);
}
@media (min-width: 992px) { .premium-newsletter-wrapper { padding: 90px 80px; } }
.newsletter-glass { position: relative; z-index: 2; }
.newsletter-input-modern {
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 6px 6px 28px;
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 36px auto 0;
    box-shadow: 0 8px 24px rgba(92, 59, 30, 0.06);
    transition: var(--transition-default);
}
.newsletter-input-modern:focus-within {
    border-color: var(--primary-brown);
    box-shadow: 0 12px 32px rgba(139, 94, 52, 0.12);
}
.newsletter-input-modern input {
    border: none;
    background: transparent;
    padding: 12px 0;
    flex-grow: 1;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    min-width: 0;
}
.newsletter-input-modern input:focus { outline: none; }
.newsletter-input-modern input::placeholder { color: rgba(122, 106, 88, 0.6); }
.newsletter-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.shape-1 {
    width: 360px;
    height: 360px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(139, 94, 52, 0.06) 0%, transparent 65%);
    animation: floatPulse 12s ease-in-out infinite;
}
.shape-2 {
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: -60px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 65%);
    animation: floatPulse 9s ease-in-out 3s infinite;
}
.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 35%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.05) 0%, transparent 65%);
    animation: floatRotate 15s ease-in-out 1.5s infinite;
}

/* ============================================================
   PREMIUM FOOTER (Compact, Warm, Elegant)
   ============================================================ */
.premium-footer {
    background: linear-gradient(160deg, var(--dark-brown) 0%, #3D2410 100%);
    color: #FFFDF9;
    padding: 72px 0 36px;
    border-top: none;
    position: relative;
    overflow: hidden;
}
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.4;
}
.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: #FFFDF9;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    transition: var(--transition-fast);
}
.footer-logo:hover { color: var(--gold-accent); }
.footer-desc {
    color: rgba(255, 253, 249, 0.6);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-top: 16px;
}
.footer-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 22px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 253, 249, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width var(--transition-fast);
}
.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 8px;
}
.footer-links a:hover::before { width: 12px; }
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 253, 249, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 253, 249, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.footer-social-btn:hover {
    background: rgba(212, 163, 115, 0.2);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 253, 249, 0.08);
    padding-top: 28px;
    margin-top: 52px;
    font-size: 0.82rem;
    color: rgba(255, 253, 249, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: rgba(255, 253, 249, 0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: var(--gold-accent); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.86rem;
    color: rgba(255, 253, 249, 0.6);
    margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold-accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.premium-detail-hero {
    background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 60%, var(--soft-cream) 100%);
    padding: 150px 0 80px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.premium-detail-hero::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--soft-cream));
    pointer-events: none;
}

/* ============================================================
   CATEGORY FILTER PILLS
   ============================================================ */
.modern-filter-pill {
    padding: 10px 24px;
    border-radius: 50px;
    background-color: var(--warm-white);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 1.5px solid var(--border-color);
    transition: var(--transition-default);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.modern-filter-pill:hover,
.modern-filter-pill.active {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--soft-cream);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(139, 94, 52, 0.22);
    transform: translateY(-2px);
}

/* ============================================================
   PREMIUM SEARCH BAR
   ============================================================ */
.search-bar-premium {
    background: var(--warm-white);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 8px 6px 24px;
    display: flex;
    align-items: center;
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}
.search-bar-premium:focus-within {
    border-color: var(--primary-brown);
    box-shadow: 0 8px 24px rgba(139, 94, 52, 0.1);
}
.search-bar-premium input {
    border: none;
    background: transparent;
    flex-grow: 1;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 10px 12px 10px 0;
    min-width: 0;
}
.search-bar-premium input:focus { outline: none; }
.search-bar-premium input::placeholder { color: var(--text-secondary); opacity: 0.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 580px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
@media (max-width: 991px) {
    .about-hero-split { grid-template-columns: 1fr; }
}
.about-hero-content {
    background: linear-gradient(145deg, var(--cream), #EDE4D6);
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-hero-img {
    overflow: hidden;
    position: relative;
}
.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.about-hero-img:hover img { transform: scale(1.04); }

.about-card-premium {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    padding: 44px;
    height: 100%;
    border: 1px solid rgba(226, 213, 195, 0.6);
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}
.about-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 115, 0.3);
}
.about-icon-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.18), rgba(139, 94, 52, 0.1));
    color: var(--primary-brown);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    flex-shrink: 0;
}

.filosofi-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #3D2410 100%);
    border-radius: var(--border-radius-lg);
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
    color: #FFFDF9;
}
.filosofi-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* ============================================================
   CONTACT PAGE — GLASS EFFECT
   ============================================================ */
.contact-info-glass {
    background: linear-gradient(145deg, var(--cream), #EEE4D5);
    border-radius: var(--border-radius-lg);
    padding: 52px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.contact-info-glass::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.contact-form-glass {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 52px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-default);
}
.contact-form-glass:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 115, 0.3);
}
.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(226, 213, 195, 0.5);
    transition: var(--transition-fast);
    cursor: default;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { transform: translateX(6px); }
.contact-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.2), rgba(139, 94, 52, 0.12));
    color: var(--primary-brown);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 163, 115, 0.25);
    transition: var(--transition-fast);
}
.contact-info-item:hover .contact-icon-box {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--gold-accent);
    border-color: transparent;
}

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.input-premium {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 15px 22px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    background-color: var(--soft-cream);
    transition: var(--transition-default);
    color: var(--text-dark);
    appearance: none;
}
.input-premium:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: var(--primary-brown);
    box-shadow: 0 6px 20px rgba(139, 94, 52, 0.08);
}
.input-premium::placeholder { color: rgba(122, 106, 88, 0.6); }
.form-label-premium {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

/* ============================================================
   RATING STARS
   ============================================================ */
.premium-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #F59E0B;
    font-size: 1.1rem;
}
.premium-stars .rating-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-left: 4px;
}

/* ============================================================
   ARTICLE DETAIL
   ============================================================ */
.detail-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.rich-article-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 2.0;
    color: #3B3B3B;
}
.rich-article-body p { margin-bottom: 28px; }
.rich-article-body h2, .rich-article-body h3 {
    font-family: var(--font-heading);
    margin-top: 52px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark-brown);
}
.rich-article-body h2 { font-size: 2rem; }
.rich-article-body h3 { font-size: 1.6rem; }
.pull-quote {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--primary-brown);
    border-left: 3px solid var(--gold-accent);
    padding-left: 32px;
    margin: 48px 0;
    line-height: 1.55;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.page-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-brown);
    background: var(--warm-white);
    border: 1.5px solid var(--border-color);
    border-radius: 10px !important;
    padding: 10px 18px;
    transition: var(--transition-fast);
    text-decoration: none;
}
.page-link:hover, .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--soft-cream);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(139, 94, 52, 0.22);
    transform: translateY(-2px);
}
.page-item.disabled .page-link {
    color: var(--border-color);
    background: var(--soft-cream);
    border-color: var(--border-color);
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--light-brown));
    border-radius: 2px;
    margin: 16px auto;
}

/* ============================================================
   SCROLL REVEAL & ANIMATIONS
   ============================================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

/* ============================================================
   LENIS SMOOTH SCROLL FIXES
   ============================================================ */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overflow: clip; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 991px) {
    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-img-wrapper { animation: none; margin-top: 40px; }
    .editor-choice-magazine { height: auto; }
    .editor-choice-img-container { min-height: 320px; }
    .editor-choice-body-content { padding: 40px 36px; }
    .editorial-showcase-card { height: 420px; }
    .filosofi-section { padding: 52px 40px; }
    .about-hero-content { padding: 52px 40px; }
    .contact-info-glass, .contact-form-glass { padding: 40px; }
    .luxury-dest-body { padding: 32px; }
}
@media (max-width: 767px) {
    .section-padding { padding-top: 72px; padding-bottom: 72px; }
    .premium-footer { padding: 56px 0 28px; }
    .editorial-showcase-card { height: 380px; }
    .magazine-article-img-wrapper { height: 220px; }
    .michelin-card-img-wrapper { height: 240px; }
    .premium-newsletter-wrapper { border-radius: 24px; padding: 52px 28px; }
    .about-card-premium { padding: 32px; }
    .contact-info-glass, .contact-form-glass { padding: 32px 28px; }
}
@media (max-width: 575px) {
    .custom-container { padding-left: 18px; padding-right: 18px; }
    .hero-title { font-size: 2.1rem; }
    .hero-desc { font-size: 0.95rem; }
    .btn-premium { padding: 13px 26px; font-size: 0.74rem; }
    .luxury-dest-body { padding: 24px; }
    .michelin-card-body { padding: 24px; }
}

/* ============================================================
   ADMIN PANEL STYLES — PREMIUM SaaS DASHBOARD (Notion & Stripe style)
   ============================================================ */

/* Theme Color Tokens inside Admin scope */
:root {
    --admin-primary: #8B5E34;
    --admin-dark: #5C3B1E;
    --admin-gold: #D4A373;
    --admin-cream: #F7F1E8;
    --admin-white: #FFFFFF;
    --admin-text: #2B2B2B;
    --admin-text-light: #6E6E6E;
    --admin-border: #EADBCC;
    --admin-radius: 20px;
    --admin-shadow-sm: 0 4px 12px rgba(92, 59, 30, 0.04);
    --admin-shadow-md: 0 10px 30px rgba(92, 59, 30, 0.08);
    --admin-shadow-lg: 0 20px 50px rgba(92, 59, 30, 0.12);
}

/* Keyframes for Admin Animations */
@keyframes adminFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes adminScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes adminBackgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- LOGIN SCREEN REDESIGN --- */
body.bg-dark {
    background: linear-gradient(-45deg, #F7F1E8, #EADBCC, #D4A373, #8B5E34, #5C3B1E) !important;
    background-size: 400% 400% !important;
    animation: adminBackgroundShift 15s ease infinite !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 24px;
}
.login-card-wrapper {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 28px !important;
    padding: 44px 36px !important;
    box-shadow: 0 24px 64px rgba(92, 59, 30, 0.22) !important;
    width: 100%;
    max-width: 450px !important;
    transform-origin: center;
    animation: adminScaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.login-card-wrapper .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--admin-dark) !important;
}
.form-label-premium {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--admin-dark);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
.form-control-premium {
    background: #FFFFFF !important;
    border: 1.5px solid var(--admin-border) !important;
    border-radius: 12px !important;
    color: var(--admin-text) !important;
    font-size: 0.9rem !important;
    padding: 11px 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.form-control-premium:focus {
    border-color: var(--admin-primary) !important;
    box-shadow: 0 0 0 4px rgba(139, 94, 52, 0.12) !important;
    outline: none !important;
}
.search-input-group {
    background: #FFFFFF !important;
    border: 1.5px solid var(--admin-border) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    align-items: center;
}
.search-input-group:focus-within {
    border-color: var(--admin-primary) !important;
    box-shadow: 0 0 0 4px rgba(139, 94, 52, 0.12) !important;
}
.search-input-group input.form-control {
    outline: none !important;
    box-shadow: none !important;
}

/* --- ADMIN LAYOUT & SIDEBAR --- */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: var(--admin-cream);
}

/* Fixed Sidebar */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--admin-dark) !important;
    color: var(--admin-cream);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 1040;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--admin-white) !important;
    text-decoration: none;
    margin-bottom: 44px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}
.admin-sidebar-logo:hover {
    opacity: 0.95;
}
.admin-sidebar-logo i {
    font-size: 1.6rem;
    color: var(--admin-gold) !important;
}
.admin-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 12px;
    color: rgba(247, 241, 232, 0.75) !important;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.admin-menu-link i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}
.admin-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--admin-white) !important;
}
.admin-menu-link:hover i {
    transform: translateX(2px);
}
.admin-menu-link.active {
    background-color: rgba(212, 163, 115, 0.15) !important;
    color: var(--admin-gold) !important;
    font-weight: 600;
}
.admin-menu-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 4px;
    background-color: var(--admin-gold);
    border-radius: 0 4px 4px 0;
}
.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 12px;
    color: #FFB3B3 !important;
    font-size: 0.92rem;
    font-weight: 500;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-logout-btn:hover {
    background-color: rgba(255, 87, 87, 0.1);
    color: #FF8585 !important;
}

/* --- MAIN WORKSPACE --- */
.admin-main {
    margin-left: 280px;
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Sticky Topbar */
.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--admin-white);
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 24px rgba(92, 59, 30, 0.03);
    border-bottom: 1px solid rgba(92, 59, 30, 0.05);
}
.admin-page-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--admin-dark);
    margin: 0;
}
.admin-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.admin-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-gold));
    color: var(--admin-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(139, 94, 52, 0.15);
}

/* Content Area */
.admin-content {
    padding: 40px;
    animation: adminFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- PREMIUM ADMIN CARDS & TABLES --- */
.notion-card {
    background: var(--admin-white) !important;
    border-radius: 20px !important;
    border: 1px solid var(--admin-border) !important;
    padding: 32px !important;
    box-shadow: var(--admin-shadow-md) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}
.notion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--admin-shadow-lg) !important;
}

/* Welcome Card style */
.notion-welcome-card {
    background: linear-gradient(135deg, #FFFDF9 0%, #FDF8F0 100%) !important;
    border-left: 5px solid var(--admin-primary) !important;
}

/* Statistics Grid */
.notion-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}
.notion-stat-card {
    background: var(--admin-white);
    border-radius: var(--admin-radius);
    border: 1px solid var(--admin-border);
    padding: 24px;
    box-shadow: var(--admin-shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.notion-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--admin-shadow-md);
    border-color: var(--admin-gold);
}
.notion-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--admin-primary), var(--admin-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.notion-stat-card:hover::before {
    opacity: 1;
}
.notion-stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--admin-text-light);
    display: block;
    margin-bottom: 8px;
}
.notion-stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--admin-dark);
    line-height: 1.1;
}

/* Modernized Tables */
.notion-table-wrapper {
    overflow-x: auto;
    margin: 0 -32px;
}
.notion-table {
    width: 100%;
    border-collapse: collapse;
}
.notion-table th {
    background-color: #FAF6F0;
    color: var(--admin-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--admin-border);
    text-align: left;
}
.notion-table td {
    padding: 20px 32px;
    border-bottom: 1px solid rgba(226, 213, 195, 0.4);
    font-size: 0.9rem;
    color: var(--admin-text);
    vertical-align: middle;
}
.notion-table tr:last-child td {
    border-bottom: none;
}
.notion-table tbody tr {
    transition: background-color 0.3s ease;
}
.notion-table tbody tr:hover {
    background-color: rgba(247, 241, 232, 0.35);
}

/* Thumbnail and image previews */
.notion-table-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--admin-border);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.notion-badge-primary {
    background-color: rgba(139, 94, 52, 0.1) !important;
    color: var(--admin-primary) !important;
    border: 1px solid rgba(139, 94, 52, 0.2) !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.notion-badge-secondary {
    background-color: rgba(212, 163, 115, 0.15) !important;
    color: #9E6B38 !important;
    border: 1px solid rgba(212, 163, 115, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Pagination container styling */
.pagination {
    margin-bottom: 0;
    gap: 4px;
}
.page-item .page-link {
    border: 1px solid var(--admin-border) !important;
    border-radius: 8px !important;
    color: var(--admin-primary) !important;
    background-color: var(--admin-white) !important;
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.page-item.active .page-link {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-dark)) !important;
    border-color: transparent !important;
    color: var(--admin-white) !important;
}
.page-item:not(.active) .page-link:hover {
    background-color: var(--admin-cream) !important;
    color: var(--admin-dark) !important;
    transform: translateY(-1px);
}

/* --- FORM EDIT & CREATE (2 Column Layout) --- */
.admin-form-col-left {
    background: var(--admin-white);
    border-radius: 20px;
    border: 1px solid var(--admin-border);
    padding: 36px;
    box-shadow: var(--admin-shadow-md);
}
.admin-form-col-right {
    background: var(--admin-white);
    border-radius: 20px;
    border: 1px solid var(--admin-border);
    padding: 36px;
    box-shadow: var(--admin-shadow-md);
}

/* Interactive Image Upload Area */
.image-preview-box {
    width: 100%;
    aspect-ratio: 16/10;
    border: 2px dashed var(--admin-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background-color: rgba(247, 241, 232, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-preview-box:hover {
    border-color: var(--admin-primary);
    background-color: rgba(247, 241, 232, 0.7);
}
.image-preview-box.has-image {
    border-style: solid;
}
.image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 2;
}
.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 20px;
    z-index: 1;
    color: var(--admin-text-light);
    transition: opacity 0.3s ease;
}
.image-preview-box.has-image .preview-placeholder {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    backdrop-filter: blur(4px);
}
.image-preview-box.has-image:hover .preview-placeholder {
    opacity: 1;
}
.preview-placeholder i {
    font-size: 2.2rem;
    color: var(--admin-primary);
}

/* Sidebar Toggle button on Mobile/Tablet */
.admin-sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: var(--admin-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.admin-sidebar-toggle:hover {
    transform: scale(1.05);
}

/* Dropdown Profile styling */
.admin-profile-dropdown {
    min-width: 220px;
    border-radius: 16px;
    border: 1px solid var(--admin-border);
    box-shadow: var(--admin-shadow-lg);
    padding: 12px;
}
.admin-profile-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--admin-text);
    transition: all 0.2s ease;
}
.admin-profile-dropdown .dropdown-item:hover {
    background-color: var(--admin-cream);
    color: var(--admin-dark);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.sidebar-open {
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(92, 59, 30, 0.25);
    }
    .admin-main {
        margin-left: 0;
    }
    .admin-topbar {
        padding: 0 24px;
    }
    .admin-sidebar-toggle {
        display: block;
    }
    .admin-content {
        padding: 24px;
    }
}
@media (max-width: 575px) {
    .notion-stat-grid {
        grid-template-columns: 1fr;
    }
    .admin-topbar {
        height: 70px;
    }
    .admin-page-title {
        font-size: 1.15rem;
    }
    .notion-card {
        padding: 20px !important;
    }
    .notion-table-wrapper {
        margin: 0 -20px;
    }
    .notion-table th, .notion-table td {
        padding: 12px 20px;
    }
    .admin-form-col-left, .admin-form-col-right {
        padding: 24px;
    }
}

/* ============================================================
   JURNAL KULINER PASER — PREMIUM EDITORIAL MAGAZINE
   ============================================================ */
.editorial-journal-section {
    background-color: #F8F4EE;
    padding-top: 88px;
    padding-bottom: 88px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Section header */
.journal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.journal-header-left .journal-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary-brown);
    display: block;
    margin-bottom: 6px;
}

.journal-header-left .journal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark-brown);
    line-height: 1.1;
    margin-bottom: 6px;
}

.journal-header-left .journal-subtitle {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.journal-header-right a:not(.btn-premium) {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-brown);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.journal-header-right a:not(.btn-premium):hover {
    gap: 14px;
    color: var(--dark-brown);
}

/* Thin rule under header */
.journal-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color) 0%, transparent 100%);
    margin-bottom: 36px;
}

/* Two-column layout */
.journal-layout {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.journal-featured {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.journal-supporting {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .journal-featured {
        flex: 62 1 0%;
    }
    .journal-supporting {
        flex: 38 1 0%;
    }
}

@media (max-width: 767px) {
    .journal-layout {
        flex-direction: column;
        gap: 24px;
    }
    .journal-featured {
        width: 100%;
    }
    .journal-supporting {
        width: 100%;
        height: auto;
        gap: 20px;
    }
}

/* ── FEATURED CARD (LEFT) ── */
.journal-featured {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(226, 213, 195, 0.4);
    box-shadow: 0 8px 32px rgba(92, 59, 30, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.journal-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(92, 59, 30, 0.10);
    text-decoration: none;
}

/* Image dominates — no padding above it */
.journal-featured-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.journal-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-featured:hover .journal-featured-img {
    transform: scale(1.04);
}

/* Gradient overlay at bottom of image for readability */
.journal-featured-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        transparent 50%,
        rgba(30, 15, 5, 0.18) 100%);
    pointer-events: none;
}

/* Text content below the image */
.journal-featured-body {
    padding: 28px 32px 32px;
}

.journal-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.journal-featured-cat {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.journal-featured-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
}

.journal-featured-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.journal-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.journal-featured:hover .journal-featured-title {
    color: var(--primary-brown);
}

.journal-featured-excerpt {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── SUPPORTING LIST (RIGHT) ── */
.journal-supporting {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.journal-supp-item {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(226, 213, 195, 0.35);
    box-shadow: 0 8px 24px rgba(92, 59, 30, 0.04);
    display: flex;
    align-items: stretch; /* stretch thumbnail and body content vertically */
    gap: 24px;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1 1 0%; /* stretch equally inside .journal-supporting */
    min-height: 220px; /* target card height */
}

.journal-supp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(92, 59, 30, 0.09);
    text-decoration: none;
}

.journal-supp-thumb {
    width: 180px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.journal-supp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-supp-item:hover .journal-supp-thumb img {
    transform: scale(1.06);
}

.journal-supp-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center content vertically */
}

.journal-supp-cat {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 8px;
}

.journal-supp-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.journal-supp-item:hover .journal-supp-title {
    color: var(--primary-brown);
}

.journal-supp-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.journal-supp-date i {
    color: var(--gold-accent);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 767px) {
    .journal-supporting {
        gap: 16px;
        height: auto;
    }
    .journal-supp-item {
        flex: none;
        height: auto;
        min-height: auto;
        padding: 16px;
        gap: 16px;
        align-items: center; /* center items vertically when stacking on mobile */
    }
    .journal-supp-thumb {
        width: 120px;
        height: 120px;
    }
    .journal-supp-body {
        justify-content: flex-start;
    }
    .journal-supp-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .journal-supp-item {
        padding: 12px;
        gap: 12px;
    }
    .journal-supp-thumb {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }
    .journal-supp-title {
        font-size: 0.95rem;
    }
    .journal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================================
   PETA DESTINASI KULINER PASER
   ============================================================ */
.culinary-map-section {
    background-color: #F8F4EE;
    padding-top: 88px;
    padding-bottom: 88px;
    border-top: 1px solid var(--border-color);
}

.culinary-map-header {
    margin-bottom: 40px;
}

.culinary-map-header .section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.culinary-map-wrapper {
    background: #fff;
    padding: 16px;
    border-radius: 32px;
    border: 1px solid rgba(226, 213, 195, 0.4);
    box-shadow: 0 8px 32px rgba(92, 59, 30, 0.05);
}

.culinary-map-container {
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

/* Responsive map heights */
@media (max-width: 991px) {
    .culinary-map-container {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .culinary-map-container {
        height: 400px;
    }
    .culinary-map-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .culinary-map-wrapper {
        padding: 8px;
        border-radius: 24px;
    }
    .culinary-map-container {
        border-radius: 16px;
    }
}

/* Custom Pagination Styles */
.custom-pagination {
    margin-top: 48px;
}
.custom-pagination .pagination-number,
.custom-pagination .pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--primary-brown);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    background-color: var(--cream);
    box-shadow: var(--shadow-sm);
}
.custom-pagination .pagination-number:hover,
.custom-pagination .pagination-arrow:hover:not(.disabled) {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    color: var(--soft-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.custom-pagination .pagination-number.active {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    color: var(--soft-cream);
    box-shadow: var(--shadow-md);
}
.custom-pagination .pagination-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: rgba(226, 213, 195, 0.2);
    color: var(--text-secondary);
    border-color: var(--border-color);
    box-shadow: none;
}


/* ============================================================
   ADMIN PREMIUM MODAL — Cream-Brown Theme
   ============================================================ */
.admin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 33, 20, 0.48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.admin-modal-overlay.show {
    opacity: 1;
}
.admin-modal-box {
    background: #FFFDF9;
    border: 1px solid #E2D5C3;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    padding: 0;
    box-shadow: 0 40px 80px rgba(92, 59, 30, 0.22);
    transform: scale(0.88) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.admin-modal-overlay.show .admin-modal-box {
    transform: scale(1) translateY(0);
}
.admin-modal-header {
    padding: 28px 32px 16px;
    border-bottom: 1px solid rgba(226, 213, 195, 0.5);
}
.admin-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5C3B1E;
    margin: 0;
    line-height: 1.3;
}
.admin-modal-body {
    padding: 20px 32px 24px;
}
.admin-modal-message {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #7A6A58;
    margin: 0;
    line-height: 1.7;
}
.admin-modal-footer {
    padding: 0 32px 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.admin-modal-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-modal-btn-cancel {
    background: transparent;
    color: #8B5E34;
    border: 1.5px solid #D4A373;
}
.admin-modal-btn-cancel:hover {
    background: rgba(212, 163, 115, 0.12);
    border-color: #8B5E34;
}
.admin-modal-btn-primary {
    background: linear-gradient(135deg, #8B5E34 0%, #5C3B1E 100%);
    color: #FFFDF9;
    box-shadow: 0 6px 18px rgba(139, 94, 52, 0.28);
}
.admin-modal-btn-primary:hover {
    background: linear-gradient(135deg, #5C3B1E 0%, #3D2410 100%);
    box-shadow: 0 10px 28px rgba(92, 59, 30, 0.36);
    transform: translateY(-2px);
}
.admin-modal-btn-danger {
    background: linear-gradient(135deg, #9B3D3D 0%, #7A2525 100%);
    color: #FFFDF9;
    box-shadow: 0 6px 18px rgba(155, 61, 61, 0.28);
}
.admin-modal-btn-danger:hover {
    background: linear-gradient(135deg, #7A2525 0%, #5C1A1A 100%);
    box-shadow: 0 10px 28px rgba(122, 37, 37, 0.36);
    transform: translateY(-2px);
}
.admin-modal-btn-warning {
    background: linear-gradient(135deg, #8B5E34 0%, #6B4520 100%);
    color: #FFFDF9;
    box-shadow: 0 6px 18px rgba(139, 94, 52, 0.28);
}
.admin-modal-btn-warning:hover {
    background: linear-gradient(135deg, #6B4520 0%, #4A2E10 100%);
    transform: translateY(-2px);
}

/* ============================================================
   ADMIN WYSIWYG TOOLBAR
   ============================================================ */
.wysiwyg-toolbar {
    background: #F7F1E8;
    border: 1px solid #E2D5C3;
    border-radius: 12px 12px 0 0;
    padding: 8px 12px;
    border-bottom: none;
}
.wysiwyg-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5C3B1E;
    background: #FFFDF9;
    border: 1px solid #D4A373;
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}
.wysiwyg-btn:hover {
    background: #8B5E34;
    color: #FFFDF9;
    border-color: #8B5E34;
}
.wysiwyg-editor-area {
    border-radius: 0 0 12px 12px !important;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #2B2B2B;
    background: #FFFDF9;
    border-top: none !important;
    min-height: 320px;
}
.wysiwyg-editor-area:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2) !important;
    border-color: #D4A373 !important;
}

/* ============================================================
   ADMIN PAGINATION — Premium compact style
   ============================================================ */
.admin-pagination {
    flex-wrap: wrap;
    gap: 4px;
}
.admin-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #8B5E34;
    background: #FFFDF9;
    border: 1px solid #E2D5C3;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1;
}
.admin-page-btn:hover:not(.disabled):not(.active) {
    background: #F7F1E8;
    border-color: #D4A373;
    color: #5C3B1E;
}
.admin-page-btn.active {
    background: linear-gradient(135deg, #8B5E34 0%, #5C3B1E 100%);
    border-color: #8B5E34;
    color: #FFFDF9;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 94, 52, 0.22);
}
.admin-page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

