/* ============================================================
   ODISHA GUIDE - Custom Styles
   ============================================================ */

:root {
    --og-navy: #1a1a3e;
    --og-dark-blue: #2d2d5e;
    --og-purple: #1e1052;
    --og-orange: #f5a623;
    --og-red: #e53935;
    --og-white: #ffffff;
    --og-light-gray: #f5f5f5;
    --og-text-dark: #222222;
    --og-text-muted: #666666;
    --og-navbar-bg: #2c2c54;
    --og-hero-gradient: linear-gradient(180deg, #1a1045 0%, #2d1b69 40%, #1a1a3e 100%);
    --og-font: 'Inter', sans-serif;
}
.container-fluid{
    width:90%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--og-font);
    color: var(--og-text-dark);
    overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.og-navbar {
     background-color: #fff; 
    /*padding: 10px 0;*/
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.og-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Brand */
.og-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.og-brand-logo {
    height: 60px;
    object-fit: contain;
}

.og-brand-text {
    font-size: 14px;
    color: var(--og-red);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.og-brand-text strong {
    font-size: 18px;
    color: var(--og-red);
}

/* Navbar Search */
.og-navbar-search {
    display: flex;
    align-items: center;
    background: var(--og-white);
    border-radius: 4px;
    overflow: visible;
    flex: 1;
    max-width: 550px;
    height: 40px;
}

.og-location-dropdown {
    display: flex;
    align-items: center;
    padding: 0 12px;
    /* border-right: 1px solid #e0e0e0; */
    gap: 6px;
    flex-shrink: 0;
}

.og-location-select {
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--og-text-dark);
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    min-width: 80px;
}
.og-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--og-red);
    color: var(--og-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.og-explore-btn:hover {
    background: #b71c1c;
    color: var(--og-white);
}

.og-search-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
        border-radius: 50px;
    padding: 6px;
    border: 1px solid #00000024;
    position: relative;
}

.og-search-input {
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 13px;
    flex: 1;
    height: 100%;
    color: var(--og-text-dark);
}

.og-search-input::placeholder {
    color: #999;
}

.og-search-btn {
    background: var(--og-red);
    color: var(--og-white);
    border: none;
    padding: 0 18px;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
    border-radius: 20px;
}

.og-search-btn:hover {
    background: #c62828;
}

/* Navbar Actions */
.og-navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.og-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: var(--og-white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    background: #2f1c6d;
}

.og-list-btn:hover {
    background:rgb(0 33 141);
    color: var(--og-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.og-free-badge {
    background: var(--og-red);
    color: var(--og-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.og-login-link {
    /* color: var(--og-white); */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.og-login-link:hover {
    color: var(--og-orange);
}

/* Mobile Toggle */
.og-mobile-toggle {
    background: transparent;
    border: none;
    color: var(--og-white);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Nav */
.og-mobile-nav {
    padding: 15px 0;
}

.og-mobile-search {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.og-mobile-search .og-location-dropdown {
    background: var(--og-white);
    border-radius: 4px;
    padding: 8px 12px;
    border-right: none;
}

.og-mobile-links {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
}

.og-mobile-links li {
    margin-bottom: 0;
}

.og-mobile-links li a {
    display: block;
    padding: 10px 0;
    color: var(--og-white);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s;
}

.og-mobile-links li a:hover {
    color: var(--og-orange);
}

/* ============================================================
   HERO SECTION: BANNER SLIDER + CATEGORY CARDS
   ============================================================ */
.og-hero-banner-section {
    padding: 20px 0;
    background: #fff;
}

.og-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-height: 320px;
}

/* Left: Banner Slider */
.og-hero-slider-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
}

.og-hero-slider-wrap .owl-carousel,
.og-hero-slider-wrap .owl-stage-outer,
.og-hero-slider-wrap .owl-stage,
.og-hero-slider-wrap .owl-item {
    height: 100%;
}

.og-hero-slide {
    display: block;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.og-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.og-hero-slider-wrap .owl-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.og-hero-slider-wrap .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.og-hero-slider-wrap .owl-dot.active span {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

.og-hero-slider-wrap .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.og-hero-slider-wrap .owl-nav button {
    pointer-events: all;
    background: rgba(255,255,255,0.85) !important;
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    color: #333 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Right: Category Cards Grid */
.og-hero-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 320px;
}

.og-hero-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.og-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: #fff;
}

.og-hero-card-text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.og-hero-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}

.og-hero-card-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0 0 12px;
    color: rgba(255,255,255,0.9);
}

.og-hero-card-link {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.og-hero-card-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.og-hero-card:hover .og-hero-card-link i {
    transform: translateX(3px);
}

.og-hero-card-img {
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.og-hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
    .og-hero-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .og-hero-slider-wrap { height: 220px; }
    .og-hero-slide { height: 220px; }
    .og-hero-cards-wrap { height: auto; }
}

@media (max-width: 576px) {
    .og-hero-cards-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .og-hero-card { padding: 16px; }
    .og-hero-card-title { font-size: 14px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .og-navbar-search {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .og-navbar-inner {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .og-list-btn {
        display: none !important;
    }
}


/* ============================================================
   TOP LISTING CATEGORIES SECTION
   ============================================================ */
.og-top-categories-section {
    padding: 0px 0 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.og-top-cat-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 12px;
}

.og-top-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    gap: 10px;
}

.og-top-cat-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.og-top-cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.2s;
}

.og-top-cat-item:hover .og-top-cat-icon {
    transform: scale(1.08);
}

.og-top-cat-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    max-width: 100px;
}

.og-top-cat-more .og-top-cat-icon {
    background: #fef9e7 !important;
    border-color: #f9ca24 !important;
}

@media (max-width: 991px) {
    .og-top-cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .og-top-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .og-top-cat-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .og-top-cat-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .og-top-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   DISCOVER BY CITIES SECTION (Owl Carousel Slider)
   ============================================================ */
.og-discover-cities-section {
    padding: 30px 0;
    background: #fff;
}

.og-discover-header {
    margin-bottom: 20px;
}

.og-discover-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.og-discover-badge {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.og-discover-slider {
    position: relative;
}

.og-discover-card {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.og-discover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.og-discover-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
}

.og-discover-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.og-discover-card:hover .og-discover-card-img img {
    transform: scale(1.05);
}

.og-discover-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.og-discover-card-placeholder i {
    font-size: 36px;
    color: #bbb;
}

.og-discover-card-name {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    color: #222;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Owl nav arrows */
.og-discover-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 40px);
    left: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.og-discover-slider .owl-nav button {
    pointer-events: all;
    background: #fff !important;
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    color: #333 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 1px solid #eee !important;
}

.og-discover-slider .owl-nav button:hover {
    background: #f8f9fa !important;
}

.og-discover-slider .owl-dots { display: none; }

/* Section header helpers (reusable) */
.og-section-header { margin-bottom: 40px; }
.og-section-title { font-size: 30px; font-weight: 700; color: var(--og-text-dark); margin-bottom: 10px; }
.og-section-subtitle { font-size: 15px; color: var(--og-text-muted); max-width: 650px; margin: 0 auto; }
.og-view-more-btn { display: inline-block; padding: 12px 32px; background: #1a73e8; color: var(--og-white); font-size: 14px; font-weight: 600; border-radius: 6px; text-decoration: none; transition: all 0.3s; margin-top: 10px; }
.og-view-more-btn:hover { background: #1557b0; color: var(--og-white); box-shadow: 0 4px 12px rgba(26,115,232,0.3); }

@media (max-width: 768px) {
    .og-discover-card-img { height: 160px; }
    .og-discover-title { font-size: 18px; }
}

@media (max-width: 480px) {
    .og-discover-card-img { height: 140px; }
}


/* ============================================================
   POPULAR SEARCHES SECTION
   ============================================================ */
.og-popular-searches-section {
    padding: 30px 0;
    background: #fff;
}

.og-popular-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0 0 20px;
}

.og-popular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
}

/* Make certain cards span 2 columns for visual variety like the image */
.og-popular-grid .og-popular-card:nth-child(1) { grid-column: span 1; }
.og-popular-grid .og-popular-card:nth-child(4) { grid-column: span 2; }
.og-popular-grid .og-popular-card:nth-child(6) { grid-column: span 2; }

.og-popular-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 270px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.og-popular-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.og-popular-card-img {
    width: 100%;
    height: 100%;
}

.og-popular-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.og-popular-card:hover .og-popular-card-img img {
    transform: scale(1.05);
}

.og-popular-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.og-popular-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #e53935;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    text-transform: uppercase;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .og-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .og-popular-grid .og-popular-card:nth-child(4),
    .og-popular-grid .og-popular-card:nth-child(6) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .og-popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .og-popular-card { height: 130px; }
    .og-popular-title { font-size: 18px; }
}

@media (max-width: 480px) {
    .og-popular-grid {
        grid-template-columns: 1fr 1fr;
    }
    .og-popular-card { height: 110px; }
}

/* ============================================================
   SEGMENT SHOWCASE SECTION
   ============================================================ */
.og-segment-showcase {
    padding: 30px 0;
    background: #f0faf4;
    border-bottom: 1px solid #d4edda;
}

.og-segment-showcase:nth-child(even) {
    background: #f0f4ff;
    border-bottom-color: #cce5ff;
}

.og-segment-layout {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    align-items: stretch;
}

/* Side Ads */
.og-segment-ad {
    border-radius: 10px;
    overflow: hidden;
}

.og-segment-ad a { display: block; height: 100%; }
.og-segment-ad img { width: 100%; object-fit: contain; border-radius: 10px; }

.og-segment-ad-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #1a2332 0%, #2d4a7a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.og-segment-ad-placeholder span {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Middle Content */
.og-segment-middle {
    background: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.og-segment-header {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 4px;
}

.og-segment-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0 0 4px;
}

.og-segment-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Categories Grid (3 columns) */
.og-segment-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.og-segment-cat-col {
    border-left: 1px solid #10b981;
    padding-left: 10px;
}

.og-segment-showcase:nth-child(even) .og-segment-cat-col {
    border-left-color: #4A6CF7;
}

.og-segment-cat-header {
    margin-bottom: 12px;
}

.og-segment-cat-name {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 2px;
}

.og-segment-showcase:nth-child(even) .og-segment-cat-name {
    color: #4A6CF7;
}

.og-segment-cat-desc {
    font-size: 11px;
    color: #999;
    margin: 0;
}

/* Subcategory List */
.og-segment-subcat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.og-segment-subcat-list li {
    border-bottom: 1px solid #f5f5f5;
}

.og-segment-subcat-list li:last-child {
    border-bottom: none;
}

.og-segment-subcat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    transition: all 0.2s;
}

.og-segment-subcat-list li a:hover {
    color: #10b981;
    padding-left: 4px;
}

.og-segment-showcase:nth-child(even) .og-segment-subcat-list li a:hover {
    color: #4A6CF7;
}

.og-segment-subcat-list li a i {
    font-size: 10px;
    color: #ccc;
    transition: color 0.2s, transform 0.2s;
}

.og-segment-subcat-list li a:hover i {
    color: #10b981;
    transform: translateX(2px);
}

/* View All Button */
.og-segment-viewall {
    display: inline-block;
    padding: 5px 14px;
    border: 1.5px solid #10b981;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.og-segment-viewall:hover {
    background: #10b981;
    color: #fff;
}

.og-segment-showcase:nth-child(even) .og-segment-viewall {
    border-color: #4A6CF7;
    color: #4A6CF7;
}

.og-segment-showcase:nth-child(even) .og-segment-viewall:hover {
    background: #4A6CF7;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .og-segment-layout {
        grid-template-columns: 120px 1fr 120px;
    }
}

@media (max-width: 991px) {
    .og-segment-layout {
        grid-template-columns: 1fr;
    }
    .og-segment-ad { display: none; }
    .og-segment-cats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .og-segment-cats-grid { grid-template-columns: 1fr; gap: 20px; }
    .og-segment-middle { padding: 20px; }
    .og-segment-name { font-size: 17px; }
}

/* ============================================================
   STATS BAR SECTION
   ============================================================ */
.og-stats-section {
    padding: 30px 0;
    background: #fafbfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.og-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.og-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.og-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.og-stat-icon i {
    font-size: 20px;
    color: var(--og-white);
}

.og-stat-icon.bg-blue {
    background: #e3f2fd;
}
.og-stat-icon.bg-blue i {
    color: #1565c0;
}

.og-stat-icon.bg-green {
    background: #e8f5e9;
}
.og-stat-icon.bg-green i {
    color: #2e7d32;
}

.og-stat-icon.bg-orange {
    background: #fff3e0;
}
.og-stat-icon.bg-orange i {
    color: #e65100;
}

.og-stat-icon.bg-purple {
    background: #ede7f6;
}
.og-stat-icon.bg-purple i {
    color: #4527a0;
}

.og-stat-info {
    display: flex;
    flex-direction: column;
}

.og-stat-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--og-text-dark);
    line-height: 1.3;
}

.og-stat-label {
    font-size: 13px;
    color: var(--og-text-muted);
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.og-cta-section {
    padding: 25px 0;
    background: var(--og-white);
}

.og-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fef9e7;
    border: 1px solid #fdeaa8;
    border-radius: 10px;
    padding: 20px 30px;
    gap: 20px;
}

.og-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.og-cta-icon {
    width: 50px;
    height: 50px;
    background: #fde68a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.og-cta-icon i {
    font-size: 22px;
    color: #d97706;
}

.og-cta-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin: 0 0 3px 0;
}

.og-cta-text p {
    font-size: 13px;
    color: var(--og-text-muted);
    margin: 0;
}

.og-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: var(--og-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.og-cta-btn:hover {
    background: #ea580c;
    color: var(--og-white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* ============================================================
   PARTNER BRANDS SECTION
   ============================================================ */
.og-partners-section {
    padding: 0px 0 30px;
    background: var(--og-white);
}

.og-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.og-partner-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: var(--og-white);
    transition: all 0.3s;
}

.og-partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.og-partner-card img {
    max-width: 100%;
    width: 100%;
    /* max-height: 60px; */
    object-fit: contain;
}

/* ============================================================
   STATS / CTA / PARTNERS RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .og-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .og-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .og-cta-left {
        flex-direction: column;
        text-align: center;
    }

    .og-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .og-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-cta-banner {
        padding: 16px 20px;
    }

    .og-cta-text h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .og-stats-grid {
        grid-template-columns: 1fr;
    }

    .og-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .og-partner-card {
        min-height: 70px;
        padding: 10px;
    }
}


/* ============================================================
   CATEGORY SHOWCASE SECTION
   ============================================================ */
.og-category-showcase-section {
    padding: 40px 0;
    background: var(--og-white);
}

.og-showcase-block {
    margin-bottom: 40px;
}

.og-showcase-block:last-child {
    margin-bottom: 0;
}

.og-showcase-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

/* Showcase Grid Layout */
.og-showcase-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--og-white);
}

/* Left Sidebar Banner */
.og-showcase-sidebar {
    position: relative;
}

.og-showcase-banner {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-color: #2c3e50;
    position: relative;
}

.og-showcase-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
}

.og-showcase-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.og-showcase-sidebar-links li {
    margin-bottom: 6px;
}

.og-showcase-sidebar-links li a {
    color: var(--og-white);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 2px 0;
}

.og-showcase-sidebar-links li a:hover {
    color: var(--og-orange);
}

.og-showcase-viewall-btn {
    display: inline-block;
    padding: 6px 18px;
    background: var(--og-red);
    color: var(--og-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    align-self: flex-start;
}

.og-showcase-viewall-btn:hover {
    background: #c62828;
    color: var(--og-white);
}

/* Subcategory Cards Grid */
.og-showcase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.og-showcase-card {
    border-left: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
}

.og-showcase-card:nth-child(4),
.og-showcase-card:nth-child(5),
.og-showcase-card:nth-child(6) {
    border-bottom: none;
}

.og-showcase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
}

.og-showcase-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--og-text-dark);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.og-showcase-card-arrow {
    color: var(--og-text-muted);
    font-size: 13px;
    flex-shrink: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.og-showcase-card-arrow:hover {
    color: var(--og-red);
}

.og-showcase-card-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 14px;
    gap: 10px;
}

.og-showcase-card-items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.og-showcase-card-items li {
    margin-bottom: 5px;
}

.og-showcase-card-items li a {
    font-size: 12px;
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}

.og-showcase-card-items li a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.og-showcase-card-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.og-showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   CATEGORY SHOWCASE RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .og-showcase-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-showcase-card:nth-child(4),
    .og-showcase-card:nth-child(5),
    .og-showcase-card:nth-child(6) {
        border-bottom: 1px solid #e8e8e8;
    }

    .og-showcase-card:nth-child(5),
    .og-showcase-card:nth-child(6) {
        border-bottom: none;
    }
}

@media (max-width: 991px) {
    .og-showcase-grid {
        grid-template-columns: 1fr;
    }

    .og-showcase-banner {
        min-height: 200px;
    }

    .og-showcase-sidebar-links {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 16px;
    }

    .og-showcase-sidebar-links li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .og-showcase-cards {
        grid-template-columns: 1fr;
    }

    .og-showcase-card {
        border-left: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .og-showcase-card:last-child {
        border-bottom: none;
    }

    .og-showcase-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .og-showcase-card-image {
        width: 60px;
        height: 60px;
    }

    .og-showcase-card-body {
        padding: 10px 12px;
    }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.og-testimonials-section {
    padding: 50px 0 40px;
    background: var(--og-white);
}

.og-testimonials-slider {
    margin-top: 10px;
}

.og-testimonial-card {
    background: var(--og-white);
    border: 1px solid #e8e8e8;
    border-top: 3px solid #f97316;
    border-radius: 6px;
    padding: 24px 20px;
    margin: 10px 8px;
    transition: box-shadow 0.3s;
}

.og-testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.og-testimonial-quote {
    margin-bottom: 12px;
}

.og-testimonial-quote i {
    font-size: 24px;
    color: #f97316;
}

.og-testimonial-text {
    font-size: 13px;
    color: var(--og-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.og-testimonial-author {
    display: flex;
    flex-direction: column;
}

.og-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--og-text-dark);
}

.og-testimonial-company {
    font-size: 12px;
    color: var(--og-text-muted);
    margin-top: 2px;
}

/* Owl Carousel Dots for Testimonials */
.og-testimonials-section .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.og-testimonials-section .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.og-testimonials-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    transition: all 0.3s;
}

.og-testimonials-section .owl-dots .owl-dot.active span {
    background: #1a73e8;
    transform: scale(1.2);
}

/* ============================================================
   ADVERTISEMENT BANNERS SECTION
   ============================================================ */
.og-ads-section {
    padding: 0px 0 30px;
    background: var(--og-white);
}

.og-ads-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.og-ad-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 100px;
    background: var(--og-white);
    transition: all 0.3s;
}

.og-ad-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
    transform: translateY(-2px);
}

.og-ad-card img {
    max-width: 100%;
    width: 100%;
    /* max-height: 80px; */
    object-fit: contain;
}

/* ============================================================
   TESTIMONIALS / ADS RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .og-ads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .og-ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-testimonials-section {
        padding: 40px 0 30px;
    }
}

@media (max-width: 480px) {
    .og-ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .og-ad-card {
        min-height: 80px;
        padding: 8px;
    }
}


/* ============================================================
   RECENT BLOGS SECTION
   ============================================================ */
.og-blogs-section {
    padding: 30px 0 30px;
    background: var(--og-light-gray);
}

.og-blogs-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 24px;
}

.og-blog-card {
    background: var(--og-white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 4px;
    transition: box-shadow 0.3s;
}

.og-blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.og-blog-card-image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.og-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.og-blog-card:hover .og-blog-card-image img {
    transform: scale(1.05);
}

.og-blog-card-body {
    padding: 14px 16px;
}

.og-blog-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--og-text-dark);
    text-decoration: none;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.og-blog-card-title:hover {
    color: #1a73e8;
}

/* Blogs Slider Navigation */
.og-blogs-section .owl-nav {
    position: absolute;
    top: -50px;
    right: 0;
}

.og-blogs-section .owl-nav button {
    width: 34px;
    height: 34px;
    background: var(--og-white) !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    color: var(--og-text-dark) !important;
    font-size: 14px !important;
    transition: all 0.3s;
}

.og-blogs-section .owl-nav button:hover {
    background: var(--og-navy) !important;
    color: var(--og-white) !important;
    border-color: var(--og-navy) !important;
}

.og-blogs-section .owl-stage-outer {
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.og-footer {
    background: #1a2332;
    color: #ccc;
    padding-top: 50px;
}

.og-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.og-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--og-orange);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.og-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.og-footer-links li {
    margin-bottom: 8px;
}

.og-footer-links li a {
    font-size: 13px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.og-footer-links li a:hover {
    color: var(--og-white);
}

/* Quick Links - Two column layout */
.og-footer-quicklinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

/* App Badges */
.og-footer-apps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.og-app-badge {
    display: inline-block;
}

.og-app-badge img {
    height: 36px;
    object-fit: contain;
}

/* Social Icons */
.og-footer-social {
    margin-top: 5px;
}

.og-footer-social-label {
    font-size: 13px;
    color: #bbb;
    display: block;
    margin-bottom: 10px;
}

.og-footer-social-icons {
    display: flex;
    gap: 8px;
}

.og-footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--og-white);
    transition: all 0.3s;
    text-decoration: none;
}

.og-footer-social-icons a:nth-child(1) { background: #1877f2; }
.og-footer-social-icons a:nth-child(2) { background: #000; }
.og-footer-social-icons a:nth-child(3) { background: #e60023; }
.og-footer-social-icons a:nth-child(4) { background: #ff0000; }
.og-footer-social-icons a:nth-child(5) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.og-footer-social-icons a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Footer Bottom Bar */
.og-footer-bottom {
    background: #111a24;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.og-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.og-footer-copyright {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.og-footer-copyright a {
    color: #bbb;
    text-decoration: underline;
    transition: color 0.3s;
}

.og-footer-copyright a:hover {
    color: var(--og-white);
}

.og-footer-bottom-social {
    display: flex;
    gap: 10px;
}

.og-footer-bottom-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--og-white);
    transition: all 0.3s;
    text-decoration: none;
}

.og-footer-bottom-social a:nth-child(1) { background: #1877f2; }
.og-footer-bottom-social a:nth-child(2) { background: #1da1f2; }
.og-footer-bottom-social a:nth-child(3) { background: #ff0000; }
.og-footer-bottom-social a:nth-child(4) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.og-footer-bottom-social a:hover {
    opacity: 0.8;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--og-navy);
    color: var(--og-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--og-red);
    color: var(--og-white);
    transform: translateY(-3px);
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .og-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .og-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .og-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .og-footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .og-blogs-section .owl-nav {
        position: static;
        text-align: right;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .og-footer {
        padding-top: 35px;
    }

    .og-footer-quicklinks {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   AUTH PAGES (Login, Register, OTP, Reset)
   ============================================================ */
.og-auth-section {
    padding: 50px 0;
    background: var(--og-light-gray);
    min-height: calc(100vh - 200px);
}

.og-auth-wrapper {
    display: flex;
    justify-content: center;
}

.og-auth-card {
    background: var(--og-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 40px;
    width: 100%;
    max-width: 600px;
}

.og-auth-card-sm {
    max-width: 450px;
}

.og-auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.og-auth-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 6px;
}

.og-auth-header p {
    font-size: 14px;
    color: var(--og-text-muted);
    margin: 0;
}

.og-otp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.og-otp-icon i {
    font-size: 24px;
    color: #1565c0;
}

/* Form Controls */
.og-auth-form {
    margin-top: 10px;
}

.og-form-group {
    margin-bottom: 18px;
}

.og-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--og-text-dark);
    margin-bottom: 6px;
}

.og-form-group label .required {
    color: var(--og-red);
}

.og-form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: var(--og-text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.og-form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.og-form-control::placeholder {
    color: #aaa;
}

.og-form-control:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Password Toggle */
.og-password-wrap {
    position: relative;
}

.og-password-wrap .og-form-control {
    padding-right: 42px;
}

.og-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
}

/* OTP Inputs */
.og-otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}

.og-otp-digit {
    width: 48px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.og-otp-digit:focus {
    border-color: #1a73e8;
}

/* Checkbox */
.og-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--og-text-muted);
    cursor: pointer;
    margin: 0;
}

.og-checkbox input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.og-checkbox a {
    color: #1a73e8;
}

/* Auth Button */
.og-auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--og-navy);
    color: var(--og-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.og-auth-btn:hover {
    background: #2d2d5e;
}

/* Alerts */
.og-alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.og-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.og-alert-danger {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Auth Footer */
.og-auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.og-auth-footer p {
    font-size: 13px;
    color: var(--og-text-muted);
    margin: 0;
}

.og-auth-footer a {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

.og-forgot-link {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
}

.og-resend-link {
    color: #1a73e8;
    font-weight: 600;
}

.og-timer {
    font-size: 12px;
    color: var(--og-text-muted);
    margin-top: 6px;
}

.og-hint {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* ============================================================
   PROFILE PAGE
   ============================================================ */
.og-profile-section {
    padding: 40px 0 60px;
}

.og-profile-card {
    background: var(--og-white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 28px;
}

.og-profile-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.og-profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.og-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.og-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #999;
}

.og-btn-outline-sm {
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--og-white);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.og-btn-outline-sm:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}

/* Account Info */
.og-account-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.og-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.og-info-label {
    font-size: 13px;
    color: var(--og-text-muted);
}

.og-info-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--og-text-dark);
}

.og-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.og-badge-active { background: #e8f5e9; color: #2e7d32; }
.og-badge-pending { background: #fff3e0; color: #e65100; }
.og-badge-suspended { background: #fbe9e7; color: #c62828; }
.og-badge-inactive { background: #f5f5f5; color: #666; }

/* Danger Zone */
.og-danger-card {
    border: 1px solid #ffcdd2;
}

.og-btn-danger {
    padding: 8px 20px;
    background: var(--og-red);
    color: var(--og-white);
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.og-btn-danger:hover {
    background: #c62828;
}

/* Auth Responsive */
@media (max-width: 768px) {
    .og-auth-card {
        padding: 28px 20px;
    }

    .og-otp-digit {
        width: 40px;
        height: 44px;
        font-size: 18px;
    }

    .og-profile-avatar-section {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.og-search-page {
    padding: 30px 0 60px;
    background: var(--og-light-gray);
    min-height: 60vh;
}

.og-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.og-search-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin: 0 0 4px 0;
}

.og-search-count {
    font-size: 13px;
    color: var(--og-text-muted);
    margin: 0;
}

.og-search-desc {
    font-size: 13px;
    color: var(--og-text-muted);
    margin: 4px 0 0 0;
}

.og-search-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.og-view-toggle {
    display: flex;
    gap: 4px;
}

.og-view-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--og-text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.og-view-btn.active,
.og-view-btn:hover {
    background: var(--og-navy);
    color: var(--og-white);
    border-color: var(--og-navy);
}

.og-sort-select {
    padding: 7px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

/* Search Layout */
.og-search-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px;
}

/* Sidebar Filters */
.og-search-sidebar {
    background: var(--og-white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.og-filter-block {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.og-filter-block:last-of-type {
    border-bottom: none;
}

.og-filter-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.og-filter-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.og-filter-scroll {
    max-height: 180px;
    overflow-y: auto;
}

.og-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--og-text-dark);
    cursor: pointer;
    margin: 0;
}

.og-filter-item input[type="radio"],
.og-filter-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.og-filter-select {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.og-filter-apply-btn {
    width: 100%;
    padding: 10px;
    background: var(--og-navy);
    color: var(--og-white);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.3s;
}

.og-filter-apply-btn:hover {
    background: #2d2d5e;
}

.og-filter-reset-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--og-red);
    text-decoration: none;
}

/* Listing Cards */
.og-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.og-listing-card {
    background: var(--og-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.og-listing-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.og-listing-image {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.og-listing-image img {
    width: 70%;
}

.og-listing-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ddd;
    background: #f9f9f9;
}

.og-listing-badge-featured {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--og-orange);
    color: var(--og-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}

.og-listing-badge-verified {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #2ecc40;
    font-size: 18px;
}

.og-listing-info {
    padding: 10px 12px;
}

.og-listing-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.og-listing-name a {
    color: var(--og-text-dark);
    text-decoration: none;
}

.og-listing-name a:hover {
    color: #1a73e8;
}

.og-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.og-listing-category,
.og-listing-city {
    font-size: 11px;
    color: var(--og-text-muted);
}

.og-listing-category i,
.og-listing-city i {
    margin-right: 3px;
    font-size: 10px;
}

.og-listing-address {
    font-size: 11px;
    color: var(--og-text-muted);
    margin: 0 0 6px 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.og-listing-distance {
    font-size: 11px;
    color: #1a73e8;
    display: block;
    margin-bottom: 6px;
}

.og-listing-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.og-listing-action-btn {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.og-btn-call {
    background: #e8f5e9;
    color: #2e7d32;
}

.og-btn-call:hover {
    background: #2e7d32;
    color: var(--og-white);
}

.og-btn-view {
    background: #e3f2fd;
    color: #1565c0;
}

.og-btn-view:hover {
    background: #1565c0;
    color: var(--og-white);
}

/* List View */
.og-results-list .og-listing-card {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.og-results-list .og-listing-image {
    width: 200px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffafa;
}

.og-results-list .og-listing-info {
    flex: 1;
}

/* No Results */
.og-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--og-text-muted);
}

.og-no-results i {
    font-size: 50px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.og-no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--og-text-dark);
}

/* Pagination */
.og-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.og-page-btn {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: var(--og-text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.og-page-btn:hover,
.og-page-btn.active {
    background: var(--og-navy);
    color: var(--og-white);
    border-color: var(--og-navy);
}

/* Search Page Responsive */
@media (max-width: 991px) {
    .og-search-layout {
        grid-template-columns: 1fr;
    }

    .og-search-sidebar {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .og-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-results-list .og-listing-card {
        flex-direction: column;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .og-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .og-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .og-results-list .og-listing-image {
        width: 100%;
        height: 160px;
    }

    .og-search-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================================================
   AUTO-SUGGEST DROPDOWN
   ============================================================ */
.og-suggest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--og-white);
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1060;
    display: none;
    max-height: 360px;
    overflow-y: auto;
}

.og-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--og-text-dark);
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.og-suggest-item:hover {
    background: #f8f9fa;
    color: var(--og-text-dark);
}

.og-suggest-item:last-child {
    border-bottom: none;
}

.og-suggest-icon {
    color: var(--og-text-muted);
    width: 16px;
    text-align: center;
    font-size: 12px;
    flex-shrink: 0;
}

.og-suggest-label {
    flex: 1;
    font-weight: 500;
}

.og-suggest-type {
    font-size: 11px;
    color: var(--og-text-muted);
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}


/* ============================================================
   FAVORITES
   ============================================================ */
.og-btn-unfav {
    background: #fbe9e7;
    color: #c62828;
    border: none;
    cursor: pointer;
}

.og-btn-unfav:hover {
    background: #c62828;
    color: var(--og-white);
}

.og-fav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: var(--og-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #ccc;
}

.og-fav-btn:hover,
.og-fav-btn.active {
    color: #e53935;
    border-color: #e53935;
    background: #fff5f5;
}

.og-fav-btn.active i {
    font-weight: 900;
}


/* ============================================================
   OPEN/CLOSED STATUS BADGE
   ============================================================ */
.og-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

.og-open-badge i {
    font-size: 7px;
}

.og-open-badge small {
    font-weight: 400;
    opacity: 0.8;
}

.og-open-badge.og-open {
    background: #e8f5e9;
    color: #2e7d32;
}

.og-open-badge.og-open i {
    color: #4caf50;
}

.og-open-badge.og-closed {
    background: #fbe9e7;
    color: #c62828;
}

.og-open-badge.og-closed i {
    color: #e53935;
}

/* Operating Hours Table (listing detail) */
.og-hours-table {
    width: 100%;
    font-size: 13px;
}

.og-hours-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.og-hours-table tr:last-child {
    border-bottom: none;
}

.og-hours-table td {
    padding: 8px 0;
}

.og-hours-table .og-hours-day {
    font-weight: 600;
    color: var(--og-text-dark);
    width: 100px;
}

.og-hours-table .og-hours-time {
    color: var(--og-text-muted);
}

.og-hours-table .og-hours-closed {
    color: #e53935;
    font-style: italic;
}

.og-hours-table tr.og-hours-today {
    background: #f0f7ff;
    border-radius: 4px;
}

.og-hours-table tr.og-hours-today .og-hours-day {
    color: #1a73e8;
}


/* ============================================================
   PRICING PAGE
   ============================================================ */
.og-pricing-section {
    padding: 60px 0;
    background: var(--og-light-gray);
}

.og-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.og-pricing-card {
    background: var(--og-white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.og-pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.og-pricing-popular {
    border-color: var(--og-navy);
    box-shadow: 0 4px 20px rgba(26, 26, 62, 0.15);
}

.og-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--og-navy);
    color: var(--og-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.og-pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin: 0 0 12px 0;
}

.og-pricing-price {
    margin-bottom: 8px;
}

.og-price-currency {
    font-size: 18px;
    font-weight: 600;
    vertical-align: top;
    color: var(--og-text-dark);
}

.og-price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--og-text-dark);
    line-height: 1;
}

.og-price-period {
    font-size: 14px;
    color: var(--og-text-muted);
}

.og-pricing-desc {
    font-size: 13px;
    color: var(--og-text-muted);
    margin-bottom: 20px;
}

.og-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.og-pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--og-text-dark);
    border-bottom: 1px solid #f5f5f5;
}

.og-pricing-features li:last-child {
    border-bottom: none;
}

.og-pricing-features li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.og-pricing-features li i.fa-check {
    color: #2e7d32;
}

.og-pricing-features li i.fa-times {
    color: #ccc;
}

.og-feature-disabled {
    color: #bbb !important;
}

.og-pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--og-navy);
    color: var(--og-white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
}

.og-pricing-btn:hover {
    background: #2d2d5e;
    color: var(--og-white);
}

.og-pricing-btn-outline {
    background: transparent;
    border: 2px solid var(--og-navy);
    color: var(--og-navy);
}

.og-pricing-btn-outline:hover {
    background: var(--og-navy);
    color: var(--og-white);
}

.og-checkout-summary {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}


/* ============================================================
   GDPR CONSENT BANNER
   ============================================================ */
.og-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ddd;
    z-index: 9999;
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.og-gdpr-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.og-gdpr-text {
    font-size: 13px;
    margin: 0;
    flex: 1;
}

.og-gdpr-text a {
    color: var(--og-orange);
}

.og-gdpr-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.og-gdpr-accept {
    padding: 8px 20px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.og-gdpr-decline {
    padding: 8px 16px;
    background: transparent;
    color: #999;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

/* Customer Ad Container */
.og-customer-ad {
    position: relative;
    text-align: center;
    margin: 12px 0;
}

.og-customer-ad img {
    border-radius: 6px;
}

.og-ad-label {
    position: absolute;
    top: 4px;
    right: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .og-gdpr-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================
   USER DROPDOWN (Navbar)
   ============================================================ */
.og-user-dropdown {
    position: relative;
}

.og-user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--og-white);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.og-user-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.og-user-btn i:first-child {
    font-size: 18px;
}

.og-user-menu {
    min-width: 200px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.og-user-menu .dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.og-user-menu .dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--og-text-muted);
}

.og-user-menu .dropdown-item:hover {
    background: #f5f5f5;
}

.og-user-menu .dropdown-item.text-danger i {
    color: var(--og-red);
}

.og-user-menu .dropdown-divider {
    margin: 4px 0;
}


/* ============================================================
   ABOUT FOOTER SECTION (SEO Content above footer)
   ============================================================ */
.og-about-footer-section {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.og-about-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0 0 12px;
}

.og-about-footer-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    max-width: 100%;
}


/* ============================================================
   FOOTER CATEGORY LINKS SECTION
   ============================================================ */
.og-footer-categories-section {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.og-footer-cat-block {
    margin-bottom: 20px;
}

.og-footer-cat-block:last-child {
    margin-bottom: 0;
}

.og-footer-cat-heading {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a3e;
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
}

.og-footer-cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.og-footer-cat-links a {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
}

.og-footer-cat-links a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* ============================================================
   NEW BUSINESS LISTING CARD (Reference Design)
   ============================================================ */
.og-results-list-new { display: flex; flex-direction: column; gap: 16px; }
.og-bcard { display: flex; background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; padding: 20px; gap: 20px; transition: box-shadow 0.2s; }
.og-bcard:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.og-bcard-logo { width: 120px; height: 120px; flex-shrink: 0; border: 1px solid #eee; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #fafafa; }
.og-bcard-logo img { width: 100%; height: 100%; object-fit: contain; }
.og-bcard-logo-placeholder { font-size: 36px; color: #ddd; }
.og-bcard-body { flex: 1; min-width: 0; }
.og-bcard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.og-bcard-name { font-size: 18px; font-weight: 700; margin: 0 0 2px; line-height: 1.3; }
.og-bcard-name a { color: #1a1a3e; text-decoration: none; }
.og-bcard-name a:hover { color: #1a73e8; }
.og-bcard-location { font-size: 13px; color: #666; margin: 0; }
.og-bcard-badges { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.og-bcard-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; display: flex; align-items: center; gap: 4px; }
.og-bcard-badge-premium { color: #e67e22; background: #fef9e7; border: 1px solid #f9ca24; }
.og-bcard-badge-premium i { color: #f39c12; }
.og-bcard-arrow { color: #999; font-size: 14px; text-decoration: none; }
.og-bcard-arrow:hover { color: #1a73e8; }
.og-bcard-status-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.og-bcard-rating { background: #388e3c; color: #fff; font-size: 12px; padding: 2px 8px; border-radius: 4px; display: inline-flex; align-items: center; gap: 4px; }
.og-bcard-rating strong { font-weight: 700; }
.og-bcard-stars { color: #ffc107; font-size: 11px; margin-left: 4px; }
.og-bcard-stars .text-muted { color: #ddd !important; }
.og-bcard-no-rating { font-size: 12px; color: #1a73e8; font-style: italic; }
.og-bcard-open { font-size: 11px; font-weight: 700; color: #388e3c; border: 1.5px solid #388e3c; border-radius: 20px; padding: 2px 10px; display: inline-flex; align-items: center; gap: 4px; }
.og-bcard-open-dot { width: 6px; height: 6px; background: #388e3c; border-radius: 50%; display: inline-block; }
.og-bcard-verified { font-size: 12px; color: #1a73e8; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.og-bcard-verified i { color: #1a73e8; }
.og-bcard-desc { font-size: 13px; color: #555; margin: 0 0 8px; line-height: 1.5; }
.og-bcard-more { color: #1a73e8; font-size: 12px; text-decoration: none; font-weight: 600; }
.og-bcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.og-bcard-tag { font-size: 11px; padding: 3px 10px; background: #f5f5f5; border: 1px solid #e8e8e8; border-radius: 4px; color: #555; }
.og-bcard-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.og-bcard-btn { font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; border: 1.5px solid; }
.og-bcard-btn-phone { color: #1a73e8; border-color: #1a73e8; background: #fff; }
.og-bcard-btn-phone:hover { background: #1a73e8; color: #fff; }
.og-bcard-btn-whatsapp { color: #fff; border-color: #25d366; background: #25d366; }
.og-bcard-btn-whatsapp:hover { background: #25d366; color: #fff; }
.og-bcard-btn-enquiry { color: #333; border-color: #f9ca24; background: #fef9e7; margin-left: auto; }
.og-bcard-btn-enquiry:hover { background: #f9ca24; color: #333; }

@media (max-width: 768px) {
    .og-bcard { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
    .og-bcard-logo { width: 90px; height: 90px; }
    .og-bcard-top { flex-direction: column; align-items: center; }
    .og-bcard-badges { margin-top: 6px; }
    .og-bcard-status-row { justify-content: center; }
    .og-bcard-actions { justify-content: center; }
    .og-bcard-btn-enquiry { margin-left: 0; }
    .og-bcard-tags { justify-content: center; }
}
@media (max-width: 480px) {
    .og-bcard-name { font-size: 15px; }
    .og-bcard-btn { font-size: 12px; padding: 6px 12px; }
}

