/* ==========================================================
   OjaLinks Design System (ODS)
   Version: 1.0
   ========================================================== */

:root{

/* ========================================
   BRAND
======================================== */

--oj-primary:#FF6B00;
--oj-primary-hover:#E65F00;

--oj-dark:#081225;

--oj-success:#22C55E;

--oj-warning:#F59E0B;

--oj-danger:#EF4444;


/* ========================================
   BACKGROUND
======================================== */

--oj-background:#F8FAFC;

--oj-card:#FFFFFF;


/* ========================================
   TEXT
======================================== */

--oj-heading:#0F172A;

--oj-text:#334155;

--oj-muted:#64748B;


/* ========================================
   BORDER
======================================== */

--oj-border:#E2E8F0;


/* ========================================
   RADIUS
======================================== */

--oj-radius-xs:8px;

--oj-radius-sm:12px;

--oj-radius-md:18px;

--oj-radius-lg:24px;

--oj-radius-xl:30px;


/* ========================================
   SHADOWS
======================================== */

--oj-shadow-sm:
0 4px 12px rgba(15,23,42,.05);

--oj-shadow-md:
0 12px 30px rgba(15,23,42,.08);

--oj-shadow-lg:
0 25px 60px rgba(15,23,42,.12);


/* ========================================
   TRANSITIONS
======================================== */

--oj-speed:.30s;

}


/* ========================================
   RESET
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

background:var(--oj-background);

color:var(--oj-text);

font-family:"Plus Jakarta Sans",Arial,Helvetica,sans-serif;

line-height:1.7;

}


/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6{

font-family:"Plus Jakarta Sans",Arial,Helvetica,sans-serif;

color:var(--oj-heading);

font-weight:700;

line-height:1.2;

}

h1{

    font-size:42px;

}

h2{

    font-size:32px;

}

h3{

    font-size:22px;

}

h4{

    font-size:18px;

}

h5{

    font-size:16px;

}

h6{

    font-size:14px;

}

p{

    font-size:14px;

    line-height:1.6;

    margin-bottom:14px;

}


/* ========================================
   CONTAINER
======================================== */

.oj-container{

max-width:1320px;

width:100%;

margin:0 auto;

padding:0 24px;

}


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

.oj-section{

padding:90px 0;

}


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

.oj-card{

    background:var(--oj-card);

    border-radius:18px;

    padding:24px;

    box-shadow:var(--oj-shadow-sm);

    transition:all var(--oj-speed);

    overflow:visible;

}

.oj-card:hover{

transform:translateY(-8px);

box-shadow:var(--oj-shadow-lg);

}


/* ========================================
   BUTTON
======================================== */

.oj-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 22px;

border-radius:10px;

font-size:14px;

background:var(--oj-primary);

color:#fff;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.oj-btn:hover{

background:var(--oj-primary-hover);

transform:translateY(-2px);

}


/* ========================================
   BADGE
======================================== */

.oj-badge{

display:inline-flex;

align-items:center;

gap:8px;

padding:8px 16px;

border-radius:999px;

font-size:13px;

font-weight:600;

background:#FFF4EB;

color:var(--oj-primary);

}


/* ========================================
   AVATAR
======================================== */

.oj-avatar{

border-radius:50%;

overflow:hidden;

background:#fff;

box-shadow:var(--oj-shadow-sm);

}


/* ========================================
   IMAGE
======================================== */

img{

max-width:100%;

display:block;

}

/* ======================================================
   ODS LAYOUT
====================================================== */

.oj-layout{

display:grid;

grid-template-columns:2fr 380px;

gap:40px;

align-items:start;

}

.oj-main{

display:flex;

flex-direction:column;

gap:40px;

}

.oj-sidebar{

position:sticky;

top:40px;

display:flex;

flex-direction:column;

gap:25px;

}

@media(max-width:992px){

.oj-layout{

grid-template-columns:1fr;

}

.oj-sidebar{

position:relative;

top:auto;

}

}

/* ==========================================
   Vendor Hero
========================================== */

.oj-vendor-cover{

width:100%;

height:360px;

position:relative;

background:#ddd;

overflow:hidden;

}

.oj-vendor-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.10),
        rgba(0,0,0,.45)
    );
}

.oj-vendor-cover img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.oj-vendor-hero-card{

width:100%;

background:#fff;

border-radius:24px;

padding:40px;

margin-top:-80px;

display:flex;

align-items:center;

gap:40px;

box-shadow:var(--oj-shadow-lg);

position:relative;

z-index:20;

}

.oj-vendor-logo{

width:190px;

height:190px;

padding:15px;

border-radius:24px;

background:#fff;

box-shadow:var(--oj-shadow-md);

flex-shrink:0;

}

.oj-vendor-logo img{

width:100%;

height:100%;

object-fit:contain;

}

.oj-vendor-details h1{

    font-size:44px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:18px;

    color:#111827;

    letter-spacing:-1px;

}

.oj-title-row{

display:flex;

align-items:center;

gap:15px;

margin-bottom:15px;

}

.oj-vendor-meta{

    display:flex;

    flex-wrap:wrap;

    gap:24px;

    align-items:center;

    margin:22px 0;

    color:#6B7280;

    font-size:15px;

    font-weight:500;

}

.oj-tagline{

font-size:17px;

color:var(--oj-text);

margin-bottom:25px;

}

.oj-action-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.oj-btn-outline{

background:#fff;

border:1px solid var(--oj-border);

color:var(--oj-heading);

}

.oj-btn-outline:hover{

background:var(--oj-primary);

color:#fff;

}

@media(max-width:992px){

.oj-vendor-hero-card{

flex-direction:column;

text-align:center;

margin-top:-60px;

}

.oj-title-row{

justify-content:center;

}

.oj-vendor-meta{

justify-content:center;

}

.action-buttons{

justify-content:center;

}

}

/*=========================================
SIDEBAR
=========================================*/

.oj-sidebar-card{

padding:28px;

margin-bottom:25px;

border-radius:24px;

}

.oj-sidebar-card h3{

margin-bottom:22px;

font-size:22px;

}

.oj-sidebar-list{

list-style:none;

display:flex;

flex-direction:column;

gap:18px;

}

.oj-sidebar-list li{

display:flex;

flex-direction:column;

gap:6px;

padding-bottom:18px;

border-bottom:1px solid var(--oj-border);

}

.oj-sidebar-list li:last-child{

border:none;

padding-bottom:0;

}

.oj-sidebar-list strong{

font-size:14px;

color:var(--oj-muted);

}

.oj-sidebar-list span,

.oj-sidebar-list a{

font-size:16px;

font-weight:500;

color:var(--oj-heading);

text-decoration:none;

}

.oj-share-buttons{

display:flex;

flex-wrap:wrap;

gap:12px;

}

/*==========================
Vendor Hero
==========================*/

.oj-vendor-hero{

    position:relative;

    margin-bottom:130px;

}

.oj-vendor-cover{

    height:420px;

    overflow:hidden;

    background:#ececec;

}

.oj-vendor-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.oj-cover-placeholder{

    width:100%;

    height:100%;

    background:#d9d9d9;

}

.oj-vendor-hero-card{

    position:relative;

    margin-top:-90px;

    background:#fff;

    border-radius:28px;

    padding:35px;

    display:flex;

    gap:35px;

    align-items:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.oj-vendor-logo{

    width:170px;

    height:170px;

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    flex-shrink:0;

}

.oj-vendor-logo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.oj-vendor-details{

    flex:1;

}

.oj-vendor-details h1{

    font-size:44px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:18px;

    color:#111827;

    letter-spacing:-1px;

}

.oj-vendor-meta{

    display:flex;

    flex-wrap:wrap;

    gap:24px;

    align-items:center;

    margin:22px 0;

    color:#6B7280;

    font-size:15px;

    font-weight:500;

}

.oj-verification-badges{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:24px;

}

.oj-badge{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    color:#fff;

    transition:.3s;

}

.oj-badge:hover{

    transform:translateY(-2px);

}

.oj-badge.verified{

    background:#16A34A;

}

.oj-badge.premium{

    background:linear-gradient(135deg,#F59E0B,#D97706);

}

.oj-badge.featured{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

}

.oj-hero-buttons{

    display:flex;

    gap:16px;

    margin-top:32px;

    flex-wrap:wrap;

}

.oj-primary-btn{

    background:#111827;

    color:#fff;

    border:none;

    padding:15px 34px;

    border-radius:14px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.oj-primary-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.oj-outline-btn{

    background:#fff;

    border:1px solid #E5E7EB;

    padding:15px 30px;

    border-radius:14px;

    cursor:pointer;

    transition:.3s;

}

.oj-outline-btn:hover{

    background:#F9FAFB;

}

/*====================================
Vendor Page Layout
====================================*/

.oj-vendor-layout{

    display:grid;

    grid-template-columns:2fr 380px;

    gap:40px;

    align-items:start;

    margin-top:40px;

}

.oj-vendor-content{

    display:flex;

    flex-direction:column;

    gap:32px;

}

.oj-vendor-sidebar{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.oj-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 40px rgba(0,0,0,.06);

}

.oj-card h2{

    margin-top:0;

    margin-bottom:25px;

    font-size:28px;

}

.oj-info-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.oj-info-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid #f2f2f2;

}

.oj-info-item:last-child{

    border-bottom:none;

}

.oj-icon{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8f8f8;

    border-radius:12px;

    font-size:18px;

}

/*==============================
Sidebar
==============================*/

.oj-sidebar{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.oj-info-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.oj-info-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding-bottom:16px;

    border-bottom:1px solid #eee;

}

.oj-info-item:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.oj-info-icon{

    width:48px;

    height:48px;

    background:#f7f7f7;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.oj-info-item small{

    display:block;

    color:#999;

    font-size:13px;

    margin-bottom:4px;

}

.oj-info-item strong{

    color:#111;

    font-weight:600;

}

.oj-share-buttons{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.oj-share-buttons button{

    height:46px;

    border:none;

    background:#f5f5f5;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.oj-share-buttons button:hover{

    background:#ff6b00;

    color:#fff;

}

/*==================================
Gallery
==================================*/

.oj-section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.oj-section-header a{

    color:#ff6b00;

    text-decoration:none;

    font-weight:600;

}

.oj-gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:190px;

    gap:18px;

}

.oj-gallery-item{

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.oj-gallery-item.large{

    grid-row:span 2;

}

.oj-gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.oj-gallery-item:hover img{

    transform:scale(1.08);

}

.oj-about-text{

    line-height:1.9;

    font-size:16px;

    color:#555;

}

/*=================================
Contact Card
=================================*/

.oj-contact-grid{

    display:grid;

    gap:18px;

}

.oj-contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border:1px solid #ececec;

    border-radius:18px;

    text-decoration:none;

    color:#111;

    transition:.3s;

}

.oj-contact-item:hover{

    transform:translateY(-3px);

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

}

.oj-contact-icon{

    width:58px;

    height:58px;

    border-radius:16px;

    background:#fff5ed;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.oj-contact-item strong{

    display:block;

    margin-bottom:4px;

}

.oj-contact-item span{

    color:#666;

}

.oj-portfolio-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

gap:30px;

margin-top:25px;

}

.oj-portfolio-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

cursor:pointer;

}

.oj-portfolio-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.oj-portfolio-card img{

width:100%;

height:240px;

object-fit:cover;

display:block;

}

.oj-portfolio-card h3{

padding:22px;

font-size:22px;

font-weight:700;

}

.oj-dashboard{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:40px;

    margin:50px auto;

}

.oj-dashboard-sidebar{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:var(--oj-shadow);

}

.oj-dashboard-sidebar ul{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.oj-dashboard-sidebar li{

    padding:14px 0;

    cursor:pointer;

    transition:.3s;

}

.oj-dashboard-sidebar li:hover{

    color:var(--oj-accent);

    transform:translateX(6px);

}