/* =====================================================
   Forschungs Chemikalien Online
   Main Stylesheet
===================================================== */

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

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

html{
    scroll-behavior:smooth;
}

:root{

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;
    --secondary:#6c757d;
    --dark:#212529;
    --light:#f8f9fa;
    --white:#ffffff;
    --border:#e9ecef;

}

body{

    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--dark);
    background:#ffffff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.3s;

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

/* =========================
   BUTTONS
========================= */

.btn-primary{

    background:#0F172A;

    border:1px solid #0F172A;

    color:#fff;

    padding:12px 28px;

    border-radius:8px;

    font-weight:600;

}

.btn-primary:hover{

    background:#1E293B;

    border-color:#1E293B;

}

.btn-outline-primary{

    padding:12px 28px;
    border-radius:8px;
    font-weight:600;

}

/* =========================
   HEADER
========================= */

.navbar{

    background:#0F172A;

    border-bottom:1px solid rgba(255,255,255,.05);

    padding:18px 0;

}

.navbar-brand{

    padding:0;
    margin:0;

}

.logo{
    width: 300px;
    height: auto;
   display:block;
}

.navbar-nav{
    align-items:center;
    gap:18px;
   
}

@media (min-width:992px){

    .navbar-nav{
        margin-top:0;
    }

}


.navbar-nav .nav-link{

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    padding:10px 14px;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:#3B82F6;

}

/* Cart Button */

.navbar .btn{

    background:#2563EB;

    border:1px solid #2563EB;

    color:#fff;

    padding:12px 22px;

    border-radius:10px;

}

.navbar .btn:hover{

    background:#1D4ED8;

    border-color:#1D4ED8;

}

.navbar-toggler{

    border:1px solid rgba(255,255,255,.25);

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    filter:invert(1);

}

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

.hero-section{

    background:linear-gradient(135deg,#0f172a,#1e293b);
    padding:80px 0;

}

.hero-badge{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}

.hero-title{

    font-size:58px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

    color:#ffffff;

}

.hero-text{

    font-size:20px;

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

}

.hero-banner{

    width:100%;

    height:580px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);
    
    border:1px solid rgba(255,255,255,.08);

}

/* =====================================================
   FEATURED PRODUCTS
===================================================== */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}


.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
}

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

.product-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,23,42,.15);

}

.product-image{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-content{

    padding:25px;

}

.product-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

    color:#111827;

}

.product-desc{

    color:#6b7280;

    font-size:15px;

    margin-bottom:18px;

    line-height:1.7;

}

.product-price{

    color:#0d6efd;

    font-size:26px;

    font-weight:800;

    margin-bottom:18px;

}

.product-btn{

    width:100%;

}

/* =========================
   INFO BOXES
========================= */

.info-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid #ececec;

    transition:.3s;

    height:100%;

}



.info-box:hover{

    transform:translateY(-6px);

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

}

.info-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    background:#eef5ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#0d6efd;

}

.info-box h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.info-box p{

    color:#6b7280;

    margin:0;

}

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

.cta-section{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    color:#fff;

    border-radius:25px;

    padding:70px 60px;

    text-align:center;

}

.cta-section h2{

    font-size:44px;

    font-weight:800;

    margin-bottom:20px;

}

.cta-section p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    opacity:.95;

}

.cta-section .btn{

    background:#fff;

    color:#0d6efd;

    border:none;

    font-weight:700;

    padding:14px 32px;

}

.cta-section .btn:hover{

    background:#f1f5f9;

}

/* =====================================================
   FOOTER
===================================================== */

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:70px 0 25px;

    margin-top:80px;
    
    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    width:220px;
    height:auto;
    margin-bottom:25px;
    

}

.footer h5{

    color:#ffffff;

    font-size:20px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-links{

    padding:0;

    margin:0;

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffffff;

    padding-left:5px;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 25px;

}

.footer-about{

    margin-top:25px;

}


/* =====================================================
   FORMS
===================================================== */

.form-control,
.form-select{

    border-radius:10px;

    padding:14px 16px;

    border:1px solid #dcdcdc;

    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:#0d6efd;

    box-shadow:none;

}

/* =====================================================
   TABLES
===================================================== */

.table{

    vertical-align:middle;

}

.table img{

    width:80px;

    border-radius:10px;

}

/* =====================================================
   BADGES
===================================================== */

.badge{

    padding:8px 12px;

    border-radius:30px;

    font-size:13px;

}

/* =====================================================
   UTILITIES
===================================================== */





.bg-light-blue{
    background:#f8fbff;
    margin-top:0;
    padding-top:90px;
    padding-bottom:90px;
}

.text-primary{

    color:#0d6efd !important;

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px){

.logo{

    width:180px;

}

.navbar{

    padding:10px 0;

}



.hero-section{

    padding:60px 0;

    text-align:center;

}

.hero-title{

    font-size:40px;

}

.hero-text{

    font-size:18px;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-banner{

    margin-top:40px;

    height:auto;

}

.section{

    padding:60px 0;

}

.section-title h2{

    font-size:32px;

}

.product-image{

    height:220px;

}

.cta-section{

    padding:45px 25px;

}

.cta-section h2{

    font-size:30px;

}

.footer{

    text-align:center;

}



}

/* View All Products Button */

.view-all-btn{
    padding:14px 40px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    margin-top:20px;
}



/* ===================================
   HOME ABOUT
=================================== */

.hero-small-title{

    font-size:42px;

    font-weight:800;

    margin:20px 0;

    color:#111827;

}

.hero-text-small{

    font-size:18px;

    color:#666;

    line-height:1.9;

}

.about-feature{

    background:#f8fbff;

    border:1px solid #e8eef8;

    border-radius:12px;

    padding:14px 18px;

    font-weight:600;

    transition:.3s;

}

.about-feature:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-3px);

}

.about-feature i{

    color:#0d6efd;

    margin-right:8px;

    font-size:18px;

}

.about-feature:hover i{

    color:#fff;

}

.shadow-soft{

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

}

.about-section{

    padding-top:0;

    padding-bottom:90px;

}

.about-section .section-title{

    text-align:center;

    margin-bottom:25px;

}



.about-section .section-title p{

    max-width:700px;

    margin:auto;

}



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

.stats-section{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    padding:90px 0;

    width:100%;

}

.stats-section h2{

    color:#fff;

}

.stats-section p{

    color:rgba(255,255,255,.9);

}

.stat-box{

    padding:20px;

}

.stats-section .stat-box{

    color:#fff !important;

}

.stats-section .stat-box h2{

    color:#fff !important;

    font-size:56px;

    font-weight:800;

}

.stats-section .stat-box p{

    color:#fff !important;

}



/* ==========================================
   PAGINATION
========================================== */

.pagination{

    gap:10px;

}

.pagination .page-link{

    width:46px;

    height:46px;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    background:#f1f5f9;

    color:#0F172A;

    font-weight:600;

}

.pagination .page-item.active .page-link{

    background:#0F172A;

    color:#fff;

}

.pagination .page-link:hover{

    background:#1E293B;

    color:#fff;

}

/* ==========================================
   BREADCRUMB
========================================== */

.breadcrumb{

    margin-bottom:20px;

}

.breadcrumb-item a{

    color:#cbd5e1;

    text-decoration:none;

}

.breadcrumb-item a:hover{

    color:#ffffff;

}

.breadcrumb-item.active{

    color:#ffffff;

}

.breadcrumb-item + .breadcrumb-item::before{

    color:#94a3b8;

}

table input[type="number"]{

    text-align:center;

    height:44px;

}

@media (min-width:992px){

.checkout-summary{

    position:sticky;
    top:120px;

}

}

.checkout-summary .btn{

    height:54px;
    font-size:17px;
    font-weight:700;

}

/*==============================
TOP BAR
==============================*/

.top-bar{

    background:#0d6efd;

    color:#fff;

    padding:10px 0;

    font-size:14px;

    font-weight:500;

}

.top-link{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.top-link:hover{

    color:#fff;

    opacity:.85;

}

.top-link i{

    margin-right:6px;

}

.shipping-text{

    color:#fff;

    font-weight:600;

}

.shipping-text i{

    margin-right:8px;

}

@media(max-width:991px){

.top-bar .row>div{

    margin-bottom:8px;

}

.top-bar .row>div:last-child{

    margin-bottom:0;

}

}

