/* =========================
   PATHOKART V4.3 THEME
========================= */

:root{

    --primary:#14b8a6;
    --primary-dark:#0f766e;
    --secondary:#22c55e;

    --bg:#f8fffe;
    --light:#f0fdfa;

    --text:#0f172a;
    --muted:#64748b;

    --white:#ffffff;

    --border:#e2e8f0;

}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);
    color:var(--text);

    font-family:
    'Plus Jakarta Sans',
    sans-serif;

    overflow-x:hidden;

    min-height:100vh;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* =========================
   HEADER
========================= */

.header-v4{

    position:sticky;
    top:0;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(14px);

    border-bottom:1px solid #e6fffb;

}

.navbar-v4{

    min-height:76px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

}

/* =========================
   LOGO FIX
========================= */

.logo-v4{

    display:flex;
    align-items:center;

}

.logo-v4 img{

    height:48px !important;

    max-height:48px !important;

    width:auto !important;

    object-fit:contain;

}

/* =========================
   MENU
========================= */

.menu-v4{

    display:flex;

    align-items:center;

    gap:20px;

}

.menu-v4 a{

    color:var(--text);

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.menu-v4 a:hover{

    color:var(--primary);

}

/* =========================
   CART BUTTON
========================= */

.cart-btn-v4{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff !important;

    padding:10px 18px;

    border-radius:12px;

    font-weight:700;

}

/* =========================
   HERO
========================= */

.hero-v4{

    padding:90px 0;

    position:relative;

}

.hero-title-v4{

    font-size:52px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:20px;

}

.hero-title-v4 span{

    color:var(--primary-dark);

}

.hero-text-v4{

    color:var(--muted);

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

}

/* =========================
   BUTTONS
========================= */

.btn-v4{

    display:inline-block;

    padding:12px 22px;

    border-radius:14px;

    color:#fff;

    font-weight:700;

    transition:.3s;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.btn-v4:hover{

    color:#fff;

    transform:translateY(-2px);

}

/* =========================
   SECTION
========================= */

.section-v4{

    padding:60px 0;

    position:relative;

}

.section-title-v4{

    font-size:36px;

    font-weight:800;

    margin-bottom:12px;

}

.section-subtitle-v4{

    color:var(--muted);

    max-width:700px;

    margin:auto;

}

/* =========================
   CARDS
========================= */

.card-v4{

    background:#fff;

    border-radius:24px;

    padding:22px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

    height:auto;

    overflow:hidden;

}

.card-v4:hover{

    transform:translateY(-5px);

}

/* =========================
   TEST CARD
========================= */

.test-card-v4{

    background:#fff;

    border-radius:24px;

    padding:22px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.test-card-v4:hover{

    transform:translateY(-6px);

}

.test-card-v4 h5{

    font-weight:700;

    margin:15px 0;

}

.test-price-v4{

    color:var(--primary-dark);

    font-size:28px;

    font-weight:800;

}

/* =========================
   FORMS
========================= */

.form-control-v4{

    width:100%;

    border:1px solid #dbeafe;

    border-radius:14px;

    padding:12px 14px;

    outline:none;

    background:#fff;

    transition:.3s;

}

.form-control-v4:focus{

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(20,184,166,.12);

}

/* =========================
   SEARCH
========================= */

.search-box-v4{

    position:relative;

    max-width:700px;

    margin:auto;

}

.search-result-v4{

    position:absolute;

    left:0;
    right:0;

    top:100%;

    background:#fff;

    border-radius:16px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    z-index:999;

    overflow:hidden;

}

.search-result-v4 a{

    display:block;

    padding:12px 15px;

    color:var(--text);

    border-bottom:1px solid #f1f5f9;

}

.search-result-v4 a:hover{

    background:#f8fafc;

}

/* =========================
   TABLES
========================= */

.table-v4{

    width:100%;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

}

.table-v4 th{

    background:#f8fafc;

    padding:14px;

}

.table-v4 td{

    padding:14px;

    vertical-align:middle;

}

/* =========================
   CART
========================= */

.cart-item-v4{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:18px;

    border-bottom:1px solid #eef2f7;

}

.cart-item-v4:last-child{

    border-bottom:none;

}

.qty-box-v4{

    display:flex;

    align-items:center;

    gap:10px;

}

/* =========================
   CHECKOUT
========================= */

.checkout-summary-v4{

    position:sticky;

    top:100px;

}

/* =========================
   TIMELINE
========================= */

.timeline-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    flex-wrap:wrap;

    width:100%;

}

.timeline-step{

    flex:1;

    min-width:140px;

    text-align:center;

}

.timeline-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

}

/* =========================
   STATUS BADGES
========================= */

.badge-v4{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.badge-success-v4{

    background:#dcfce7;

    color:#15803d;

}

.badge-warning-v4{

    background:#fef3c7;

    color:#b45309;

}

.badge-info-v4{

    background:#dbeafe;

    color:#2563eb;

}

/* =========================
   FOOTER
========================= */

.footer-v4{

    background:#0f172a;

    color:#fff;

    padding:70px 0 25px;

    margin-top:60px;

    position:relative;

    clear:both;

    z-index:1;

}

.footer-v4 h5{

    margin-bottom:15px;

    font-weight:700;

}

.footer-v4 p,
.footer-v4 li,
.footer-v4 a{

    color:#cbd5e1;

    font-size:14px;

}

.footer-v4 ul{

    list-style:none;

    padding:0;

}

.footer-v4 li{

    margin-bottom:8px;

}

.footer-v4 a:hover{

    color:#fff;

}

.footer-bottom-v4{

    margin-top:30px;

    border-top:
    1px solid rgba(255,255,255,.08);

    padding-top:20px;

    text-align:center;

}

/* =========================
   FOOTER OVERLAP FIX
========================= */

.section-v4{

    overflow:auto;

}

.card-v4{

    overflow:hidden;

}

/* =========================
   MOBILE MENU
========================= */

.mobile-toggle-v4{

    display:none;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .mobile-toggle-v4{

        display:block;

        font-size:24px;

        cursor:pointer;

    }

    .menu-v4{

        display:none;

        width:100%;

        flex-direction:column;

        gap:12px;

        padding-top:15px;

    }

    .menu-v4.active{

        display:flex;

    }

    .navbar-v4{

        flex-wrap:wrap;

    }

    .hero-title-v4{

        font-size:40px;

    }

    .timeline-step{

        flex:0 0 calc(50% - 10px);

        min-width:auto;

    }

}

@media(max-width:576px){

    .hero-title-v4{

        font-size:32px;

    }

    .section-title-v4{

        font-size:28px;

    }

    .timeline-step{

        flex:0 0 100%;

    }

    .timeline-icon{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .cart-item-v4{

        flex-direction:column;

        align-items:flex-start;

    }

}