/* ============================================
   GhienCafe Home Page Redesign - Riviu Style
   Design System Variables
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #409eff;
    --primary-dark: #3370ce;
    --primary-light: #e8f4ff;

    /* Accent - Coffee Brown */
    --accent: #6b4423;
    --accent-light: #fff8f0;
    --accent-dark: #5a3a1d;

    /* Text Colors */
    --text-heading: #1a1a1a;
    --text-body: #4a4a4a;
    --text-caption: #8c8c8c;

    /* Background Colors */
    --bg-main: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f0f5ff;

    /* Status Colors */
    --success: #52c41a;
    --warning: #faad14;
    --danger: #ff6b6b;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   Base Reset & Typography
   ============================================ */

.gn-home-page {
    font-family: var(--font-family);
    color: var(--text-body);
    line-height: 1.5;
    background: var(--bg-secondary);
}

.gn-home-page *,
.gn-home-page *::before,
.gn-home-page *::after {
    box-sizing: border-box;
}

.gn-home-page a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.gn-home-page a:hover {
    color: var(--primary);
}

.gn-home-page img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Header Styles
   ============================================ */

.gn-header {
    background: var(--bg-main);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid var(--border, #e8e8e8);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.gn-logo {
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
}

.gn-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
    border-radius: var(--radius-sm, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.gn-logo-text span:first-child {
    color: #6b4423;
}

.gn-logo-text span:last-child {
    color: var(--text-heading);
}

.gn-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gn-nav-item {
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    cursor: pointer;
}

.gn-nav-item:hover,
.gn-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

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

.gn-search-mini {
    position: relative;
    width: 280px;
}

.gn-search-mini input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid var(--border, #e8e8e8);
    border-radius: var(--radius-full);
    font-size: 14px;
    outline: none;
    background: var(--bg-secondary);
    transition: all 0.2s;
}

.gn-search-mini input:focus {
    border-color: var(--primary);
    background: var(--bg-main);
    box-shadow: 0 0 0 3px rgba(64, 158, 255, 0.1);
}

.gn-search-mini i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-caption);
}

.gn-header-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.gn-header-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* ============================================
   Hero Section
   ============================================ */

.gn-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fef6e8 100%);
    padding: 110px 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 68, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gn-hero-content {
    position: relative;
    z-index: 1;
}

.gn-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.2;
}

.gn-hero h1 span {
    color: #6b4423;
}

.gn-hero p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
}

.gn-search-main {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gn-search-main:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.gn-search-main input {
    flex: 1;
    padding: 20px 24px;
    border: none;
    font-size: 16px;
    outline: none;
}

.gn-search-btn {
    padding: 20px 40px;
    background: #6b4423;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gn-search-btn:hover {
    background: var(--accent-dark);
}

/* Hero Tags/Chips below search */
.gn-hero-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gn-hero-tag {
    padding: 8px 18px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.gn-hero-tag:hover {
    background: #6b4423;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Quick Filters
   ============================================ */

.gn-filters {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 30px 60px;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border, #e8e8e8);
}

.gn-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    border: none;
    font-family: inherit;
    font-size: 14px;
}

.gn-filter-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.gn-filter-item i {
    font-size: 16px;
}

/* ============================================
   Section Common Styles
   ============================================ */

.gn-section {
    padding: 50px 60px;
}

.gn-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.gn-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gn-section-title i {
    color: #6b4423;
}

.gn-section-more {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.gn-section-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   Purpose Grid Section
   ============================================ */

.gn-purpose-section {
    background: var(--bg-tertiary);
}

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

.gn-purpose-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    transition: all 0.3s;
}

.gn-purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gn-purpose-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gn-purpose-card:hover img {
    transform: scale(1.1);
}

.gn-purpose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gn-purpose-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.gn-purpose-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.gn-purpose-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   Popular Tags Section
   ============================================ */

.gn-tags-section {
    background: var(--bg-secondary);
    padding-top: 60px;
    padding-bottom: 60px;
}

.gn-tags-section .gn-section-header {
    justify-content: center;
    margin-bottom: 32px;
}

.gn-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.gn-tag {
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gn-tag::before {
    content: '#';
    color: #6b4423;
    opacity: 0.5;
    font-weight: 400;
}

.gn-tag:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(107, 68, 35, 0.12);
    border-color: transparent;
    color: #6b4423;
    background: #fff;
    z-index: 1;
}

.gn-tag.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 15px rgba(255, 65, 108, 0.25);
}

.gn-tag.hot::before {
    content: '🔥';
    opacity: 1;
    color: white;
    font-size: 14px;
    margin-right: 2px;
}

.gn-tag.hot:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 65, 108, 0.4);
    color: white;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

/* ============================================
   Featured Coffee Shops - Card Grid
   ============================================ */

.gn-featured {
    background: var(--bg-main);
}

.gn-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gn-coffee-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.gn-coffee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(107, 68, 35, 0.1);
    border-color: rgba(107, 68, 35, 0.1);
}

.gn-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gn-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gn-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.gn-card-badge i {
    color: #f59e0b;
}

.gn-card-badge.featured {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.gn-card-badge.featured i {
    color: white;
}

.gn-card-save {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: none;
    font-size: 14px;
    color: #4a4a4a;
}

.gn-card-save:hover {
    background: #ff4b2b;
    color: white;
    transform: scale(1.1);
}

.gn-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gn-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.gn-coffee-card:hover .gn-card-title {
    color: #6b4423;
}

.gn-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.gn-card-stars {
    display: flex;
    gap: 2px;
}

.gn-card-stars i {
    color: #f59e0b;
    font-size: 13px;
}

.gn-card-rating span {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.gn-card-rating small {
    font-size: 13px;
    color: #8c8c8c;
}

.gn-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
}

.gn-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gn-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.gn-card-tag {
    padding: 6px 14px;
    background: rgba(107, 68, 35, 0.05);
    border: 1px solid rgba(107, 68, 35, 0.1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #6b4423;
    transition: all 0.3s ease;
}

.gn-coffee-card:hover .gn-card-tag {
    background: rgba(107, 68, 35, 0.1);
}

/* ============================================
   Reviews Section
   ============================================ */

.gn-reviews {
    background: var(--bg-secondary);
}

.gn-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gn-review-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border, #e8e8e8);
    cursor: pointer;
    transition: all 0.3s;
}

.gn-review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.gn-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.gn-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.gn-review-user {
    flex: 1;
}

.gn-review-user h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
}

.gn-review-user span {
    font-size: 13px;
    color: var(--text-caption);
}

.gn-review-rating {
    display: flex;
    gap: 4px;
}

.gn-review-rating i {
    color: #faad14;
    font-size: 14px;
}

.gn-review-content {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.gn-review-coffee {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.gn-review-coffee-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.gn-review-coffee-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.gn-review-coffee-info span {
    font-size: 12px;
    color: var(--text-caption);
}

/* ============================================
   Modern Minimalist Reviews Section
   ============================================ */

.gn-reviews-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gn-reviews-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #4a4a4a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.gn-reviews-arrow:hover {
    background: #6b4423;
    color: #ffffff;
    border-color: #6b4423;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 68, 35, 0.2);
}

.gn-reviews-wrapper {
    position: relative;
    margin: 0 -15px; /* Account for inner padding */
    padding: 10px 15px;
}

/* Carousel Container */
.gn-reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gn-reviews-carousel::-webkit-scrollbar {
    display: none;
}

/* Modern Review Card */
.gn-review-card-modern {
    min-width: 380px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    scroll-snap-align: start;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gn-review-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.gn-review-user-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.gn-review-avatar-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef6e8 0%, #fae2c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(107, 68, 35, 0.1);
}

.gn-review-initial {
    font-size: 20px;
    font-weight: 800;
    color: #6b4423;
}

.gn-review-user-info {
    flex: 1;
}

.gn-review-user-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.gn-review-time {
    font-size: 13px;
    color: #8c8c8c;
    font-weight: 500;
}

.gn-star-badge {
    background: #fff8f0;
    color: #f39c12;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.gn-review-content-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    flex-grow: 1;
}

.gn-quote-icon {
    font-size: 40px;
    color: rgba(107, 68, 35, 0.05);
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.gn-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gn-review-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
    margin: 0 0 20px 0;
}

.gn-review-target {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: #fafafa;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.gn-review-target:hover {
    background: #ffffff;
    border-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.gn-review-target img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.gn-target-info {
    display: flex;
    flex-direction: column;
}

.gn-target-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.gn-target-info span {
    font-size: 13px;
    color: #6b4423;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gn-target-info span i {
    font-size: 10px;
    transition: transform 0.2s;
}

.gn-review-target:hover .gn-target-info span i {
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gn-review-card-modern {
        min-width: 300px;
        padding: 20px;
    }

    .gn-reviews-nav {
        display: none;
    }
}

/* ============================================
   Trending Section
   ============================================ */

.gn-trending {
    background: #fff;
    padding: 40px 0;
}

.gn-trending .gn-section-header {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
}

.gn-trending-more {
    text-align: center;
    margin-bottom: 20px;
}

.gn-trending-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b4423;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #6b4423;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.gn-trending-more a:hover {
    background: #6b4423;
    color: white;
}

.gn-trending .gn-section-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.gn-trending-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gn-trending-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

/* Featured Card (Large) - Glassmorphism */
.gn-trending-featured {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.gn-trending-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gn-trending-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gn-trending-featured:hover .gn-trending-featured-img {
    transform: scale(1.08);
}

.gn-trending-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.gn-trending-featured-top {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.gn-trending-label {
    display: inline-block;
    padding: 6px 14px;
    background: #6b4423;
    color: white;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gn-trending-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.gn-trending-glass-dock {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    z-index: 2;
}

.gn-trending-featured:hover .gn-trending-glass-dock {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gn-trending-featured-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.gn-trending-featured-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gn-trending-featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #6b4423;
    font-weight: 500;
}

.gn-trending-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.gn-trending-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gn-trending-views,
.gn-trending-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Side Column with Carousel */
.gn-trending-side {
    display: flex;
    flex-direction: column;
}

.gn-trending-carousel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.gn-trending-carousel::-webkit-scrollbar {
    display: none;
}

.gn-trending-side-modern {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    text-decoration: none;
}

.gn-trending-side-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: rgba(107, 68, 35, 0.1);
    background: #fffcf9;
}

.gn-trending-side-img-wrap {
    position: relative;
    width: 140px;
    height: 100px;
    border-radius: 14px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.gn-trending-side-modern:hover .gn-trending-side-img {
    transform: scale(1.1);
}

.gn-trending-side-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
}

.gn-trending-side-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gn-trending-side-body .gn-trending-label {
    padding: 4px 10px;
    font-size: 10px;
    width: fit-content;
    margin-bottom: 8px;
}

.gn-trending-side-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.gn-trending-side-modern:hover .gn-trending-side-title {
    color: #6b4423;
}

.gn-trending-side-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #8c8c8c;
    font-weight: 500;
}

.gn-trending-side-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .gn-trending-grid {
        grid-template-columns: 1fr;
    }
    .gn-trending-featured {
        height: 350px;
    }
    .gn-trending-featured-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .gn-trending {
        padding: 24px 0;
    }
    .gn-trending-featured {
        height: 280px;
    }
    .gn-trending-featured-title {
        font-size: 18px;
    }
    .gn-trending-featured-desc {
        display: none;
    }
    .gn-trending-side-card {
        flex-direction: column;
    }
    .gn-trending-side-img-wrap {
        width: 100%;
        height: 140px;
    }
    .gn-trending-side-body {
        padding: 14px;
    }
}

/* ============================================
   Locations Section - Pro Max Glassmorphism
   ============================================ */

.gn-locations {
    background: var(--bg-main);
    overflow: hidden;
}

.gn-locations-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 24px;
    margin: 0;
    -ms-overflow-style: none;
}

.gn-locations-carousel::-webkit-scrollbar {
    display: none;
}

.gn-locations-track {
    display: flex;
    gap: 24px;
    padding: 10px 5px;
}

.gn-location-card {
    flex: 0 0 auto;
    width: 260px;
    height: 340px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gn-location-card:hover {
    transform: translateY(-8px);
}

.gn-location-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.gn-location-card:hover .gn-location-card-bg {
    transform: scale(1.1);
}

.gn-location-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.gn-location-glass-dock {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gn-location-card:hover .gn-location-glass-dock {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gn-location-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gn-location-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.gn-location-card-count {
    font-size: 13px;
    color: #6b4423;
    font-weight: 600;
}

.gn-location-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gn-location-card-icon i {
    font-size: 16px;
    color: #6b4423;
}

.gn-location-card:hover .gn-location-card-icon {
    background: #6b4423;
}

.gn-location-card:hover .gn-location-card-icon i {
    color: #ffffff;
}

.gn-location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tablet */
@media (max-width: 992px) {
    .gn-location-card {
        width: 220px;
        height: 300px;
    }
}
@media (max-width: 768px) {
    .gn-location-card {
        width: 180px;
        height: 250px;
    }
    .gn-location-glass-dock {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .gn-location-card-icon {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gn-location-card {
        flex: 0 0 240px;
        height: 180px;
    }

    .gn-location-card-name {
        font-size: 18px;
    }

    .gn-location-card-icon {
        width: 48px;
        height: 48px;
    }

    .gn-location-card-icon i {
        font-size: 20px;
    }
}

/* ============================================
   Floating Action Buttons (FAB)
   ============================================ */

.gn-floating {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.gn-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    border: none;
}

.gn-fab:hover {
    transform: scale(1.1);
}

.gn-fab-zalo {
    background: #0068ff;
    color: white;
}

.gn-fab-location {
    background: #6b4423;
    color: white;
}

/* ============================================
   Footer Styles
   ============================================ */

.gn-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
}

.gn-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gn-footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
}

.gn-footer-brand h3 span:first-child {
    color: #6b4423;
}

.gn-footer-brand p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.gn-footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gn-footer-col a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.gn-footer-col a:hover {
    color: white;
}

.gn-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.gn-footer-bottom a {
    color: #666;
    margin-left: 12px;
}

.gn-footer-bottom a:hover {
    color: white;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
    .gn-header {
        padding: 0 40px;
    }

    .gn-section {
        padding: 40px;
    }

    .gn-footer {
        padding: 40px;
    }

    .gn-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gn-purpose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gn-header {
        padding: 0 24px;
    }

    .gn-hero {
        padding: 40px 24px;
    }

    .gn-hero h1 {
        font-size: 36px;
    }

    .gn-filters {
        padding: 20px 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .gn-section {
        padding: 30px 24px;
    }

    .gn-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gn-purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gn-reviews-grid {
        grid-template-columns: 1fr;
    }

    .gn-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gn-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gn-header {
        height: auto;
        padding: 16px 16px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .gn-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .gn-search-mini {
        width: 100%;
    }

    .gn-hero {
        padding: 30px 16px;
    }

    .gn-hero h1 {
        font-size: 28px;
    }

    .gn-hero p {
        font-size: 16px;
    }

    .gn-search-main {
        flex-direction: column;
    }

    .gn-search-btn {
        padding: 16px 24px;
    }

    .gn-filters {
        gap: 8px;
        padding: 16px;
    }

    .gn-filter-item {
        padding: 10px 14px;
        font-size: 13px;
    }

    .gn-section {
        padding: 24px 16px;
    }

    .gn-section-title {
        font-size: 20px;
    }

    .gn-card-grid {
        grid-template-columns: 1fr;
    }

    .gn-purpose-grid {
        grid-template-columns: 1fr;
    }

    .gn-purpose-card {
        height: 140px;
    }

    .gn-trending-grid {
        grid-template-columns: 1fr;
    }

    .gn-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gn-footer {
        padding: 30px 16px;
    }

    .gn-floating {
        right: 16px;
        bottom: 16px;
    }

    .gn-fab {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gn-hero h1 {
        font-size: 24px;
    }

    .gn-hero-tags {
        gap: 8px;
    }

    .gn-hero-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    .gn-tags-cloud {
        justify-content: flex-start;
    }

    .gn-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ============================================
   Coffee Detail Page Styles
   ============================================ */

.coffee-single-page {
    background-color: #f8f9fa;
    color: var(--text-body);
}

.coffee-single-page .lst-info-head {
    margin-bottom: 30px;
}

.coffee-single-page .single-heading-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.2;
}

.coffee-address {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coffee-address p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-muted);
}

.coffee-address i {
    margin-right: 8px;
    font-size: 18px;
    color: var(--primary);
}

/* Bento Quick Info Bar */
.coffee-single-page .coffee-quick-info-bar {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 16px !important;
    margin: 32px 0 40px !important;
}

.coffee-single-page .coffee-quick-info-bar .info-item {
    background: #ffffff !important;
    padding: 20px !important;
    border-radius: 20px !important;
    border: 1px solid #edf2f7 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    text-align: center !important;
    min-height: 120px !important;
}

.coffee-single-page .coffee-quick-info-bar .info-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: var(--primary) !important;
}

.coffee-single-page .coffee-quick-info-bar .info-item i {
    font-size: 28px !important;
    margin-bottom: 12px !important;
}

.coffee-single-page .coffee-quick-info-bar .info-label {
    font-weight: 700 !important;
    font-size: 17px !important;
    color: var(--text-main) !important;
    margin-bottom: 4px !important;
}

.coffee-single-page .coffee-quick-info-bar .info-sublabel {
    font-size: 13px !important;
    color: var(--text-muted) !important;
}

/* Sections */
.underline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.underline-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.description-section .content-section {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* AI Content Section */
.coffee-ai-content-box {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 20px;
    padding: 24px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.coffee-ai-content-box:before {
    content: '\f0eb';
    font-family: 'FontAwesome';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.05;
    color: var(--primary);
    transform: rotate(15deg);
}

.ai-badge {
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ai-badge i {
    margin-right: 6px;
}

/* Sidebar Styling */
.bg-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.js-book-it-btn-container {
    width: 100%;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.js-book-it-btn-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.phone-number-hidden {
    display: none;
    margin-top: 16px;
    text-align: center;
}

.phone-number-hidden a {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.gl-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Sidebar Post Item */
.gl-recent-post-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.gl-recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gl-recent-post-img-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.gl-recent-post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gl-recent-post-item:hover .gl-recent-post-img-wrapper img {
    transform: scale(1.1);
}

.gl-recent-post-details h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.gl-recent-post-details h3 a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .coffee-quick-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .coffee-single-page .single-heading-title h1 {
        font-size: 26px;
    }
    
    .coffee-quick-info-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================
   Soft UI Badges & Enhanced Tags
   ============================================ */
.soft-badge {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 1px solid transparent;
    cursor: default;
}

.badge-blue { background-color: #e0f2fe; color: #0369a1; border-color: #bae6fd; }
.badge-green { background-color: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.badge-amber { background-color: #fef3c7; color: #92400e; border-color: #fde68a; }
.badge-rose { background-color: #ffe4e6; color: #be123c; border-color: #fecdd3; }
.badge-indigo { background-color: #e0e7ff; color: #4338ca; border-color: #c7d2fe; }

.soft-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gl-tag-btn {
    background: #fff;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gl-tag-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.gl-tag-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.tag-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tag-section-title i {
    color: var(--primary);
    font-size: 26px;
}

/* ============================================
   Modern Coffee Cards (Bento Style)
   ============================================ */
.gl-search-result-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 32px !important;
    margin-top: 30px !important;
}

.gl-featured-items {
    padding: 0 !important;
    border: none !important;
}

.gl-card-inner {
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.gl-card-inner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(249, 115, 22, 0.2) !important;
}

.gl-feat-items-img-wrapper {
    position: relative !important;
    aspect-ratio: 4/3 !important;
    overflow: hidden !important;
}

.gl-feat-items-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.gl-card-inner:hover .gl-feat-items-img-wrapper img {
    transform: scale(1.1) !important;
}

.gl-item-rating-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(4px) !important;
    padding: 4px 10px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-weight: 800 !important;
    color: #d97706 !important;
    font-size: 13px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.gl-feat-item-details {
    padding: 20px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.gl-feat-item-details h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.gl-feat-item-details h3 a {
    color: var(--text-main) !important;
    transition: color 0.2s ease !important;
}

.gl-card-inner:hover h3 a {
    color: var(--primary) !important;
}

.gl-item-location {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-bottom: 16px !important;
    display: flex !important;
    gap: 8px !important;
}

.gl-item-footer {
    margin-top: auto !important;
    padding-top: 16px !important;
    border-top: 1px solid #f8fafc !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.gl-item-stats {
    font-size: 12px !important;
    color: #94a3b8 !important;
    display: flex !important;
    gap: 12px !important;
}

.gl-item-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #15803d !important;
    background: #f0fdf4 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* Sidebar Specific */
.gl-sidebar-widget {
    margin-bottom: 40px !important;
}

.gl-recent-post-wrapper {
    margin-top: 20px !important;
}

.gl-recent-post-details h3 {
    margin-bottom: 6px !important;
    font-size: 16px !important;
}

.gl-recent-post-details .gl-item-location {
    margin-bottom: 0 !important;
}

.gl-recent-post-details .gl-item-location small {
    font-size: 12px !important;
}


/* ============================================
   Modernized Breadcrumbs (Soft UI)
   ============================================ */
.lst-breadcrumb {
    margin: 24px 0 16px;
}

.lst-breadcrumb .breadcrumb {
    background: #fff !important;
    padding: 10px 18px !important;
    border-radius: 14px !important;
    border: 1px solid #f0f0f0 !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.lst-breadcrumb .breadcrumb-item {
    display: flex !important;
    align-items: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
}

.lst-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    color: #cbd5e1 !important;
    padding: 0 12px !important;
    float: none !important;
}

.lst-breadcrumb .breadcrumb-item a {
    color: var(--text-muted) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.lst-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary) !important;
}

.lst-breadcrumb .breadcrumb-item.active {
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

.lst-breadcrumb .breadcrumb-item i {
    font-size: 14px !important;
    color: var(--primary) !important;
}