/*

====================================

OJALINKS PLATFORM

====================================

*/

:root{

    --oj-primary:#000000;
    --oj-secondary:#ffffff;
    --oj-accent:#ff8a00;

    --oj-success:#16a34a;
    --oj-warning:#f59e0b;
    --oj-danger:#dc2626;

    --oj-radius:18px;

    --oj-shadow:0 12px 30px rgba(0,0,0,.08);

    --oj-transition:.35s ease;

    --oj-font:Arial,Helvetica,sans-serif;

}

/* ======================================
   Base Styles
====================================== */

body{

    font-family:var(--oj-font);

    color:var(--oj-primary);

    background:#ffffff;

}

/* ======================================
   Future Components
====================================== */

/*

Buttons

Cards

Forms

Navigation

Vendor Cards

Business Cards

Homepage

Footer

*/

/* ==================================================
   OJALINKS COMPONENT LIBRARY
================================================== */

/* Buttons */

.oj-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:var(--oj-radius);
    font-weight:600;
    text-decoration:none;
    transition:var(--oj-transition);
}

.oj-btn-primary{
    background:var(--oj-primary);
    color:#fff;
}

.oj-btn-primary:hover{
    opacity:.9;
}

/* Badges */

.oj-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.oj-badge-success{
    background:#dcfce7;
    color:#166534;
}

/* Cards */

.oj-card{
    background:#fff;
    border-radius:var(--oj-radius);
    box-shadow:var(--oj-shadow);
    padding:24px;
}

/* Section Header */

.oj-section-header{
    margin-bottom:40px;
}

.oj-section-header h2{
    font-size:36px;
    margin-bottom:10px;
}

.oj-section-header p{
    color:#666;
    font-size:16px;
}

.oj-btn-full{

    width:100%;

}

/* ==========================================
   HERO SECTION
========================================== */

.oj-hero{
    padding:120px 0;
    background:#f8fafc;
}

.oj-container{
    width:min(1200px,90%);
    margin:0 auto;
}

.oj-hero-content{
    max-width:700px;
}

.oj-hero h1{
    font-size:56px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.oj-hero p{
    font-size:20px;
    color:#666;
    margin-bottom:40px;
}

.oj-search-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.oj-search-form input{
    flex:1;
    min-width:280px;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.oj-search-form button{
    padding:16px 30px;
    border:none;
    border-radius:12px;
    background:#ff6b00;
    color:#fff;
    cursor:pointer;
    font-weight:600;
}

/* ==========================================
   FEATURED BUSINESSES
========================================== */

.oj-featured-businesses{
    padding:80px 0;
    background:#f8fafc;
}

.oj-business-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ==========================================
   VENDOR CARD
========================================== */

.oj-vendor-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.oj-vendor-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.oj-vendor-cover{
    position:relative;
    height:190px;
    overflow:hidden;
}

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

.oj-favourite{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.oj-vendor-body{
    padding:24px;
    position:relative;
}

.oj-vendor-logo{
    width:84px;
    height:84px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    border:4px solid #fff;
    margin-top:-65px;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.oj-vendor-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.oj-vendor-body h3{
    margin:18px 0 10px;
    font-size:22px;
}

.oj-vendor-body h3 a{
    color:#111827;
    text-decoration:none;
}

.oj-vendor-body h3 a:hover{
    color:#ff6b00;
}

.oj-rating{
    margin:12px 0;
    color:#f59e0b;
    font-size:15px;
}

.oj-rating span{
    color:#6b7280;
    margin-left:8px;
}

.oj-category{
    color:#374151;
    margin:12px 0;
}

.oj-location{
    color:#6b7280;
    margin-bottom:20px;
}

.oj-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.oj-gallery-featured img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
}

.oj-gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.oj-gallery-thumb img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:15px;
}

.oj-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.oj-lightbox.active{
    opacity:1;
    visibility:visible;
}

.oj-lightbox-image{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}

.oj-lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
}

.oj-business-under-review{

    background:#FEF3C7;

    border-left:5px solid #F59E0B;

    padding:20px;

    margin:20px 0;

    border-radius:12px;

    color:#92400E;

}

.oj-business-under-review i{

    margin-right:10px;

    color:#F59E0B;

}

.oj-btn-disabled{

    background:#9CA3AF !important;

    color:#fff !important;

    cursor:not-allowed;

    opacity:.85;

}