/* =========================
   GLOBAL
========================= */

body{
    margin:0;
    padding:0;
    background:#f5f7fb;
    font-family:Arial,sans-serif;
    color:#222;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

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

.navbar{
    background:#ffffff !important;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:26px;
    font-weight:700;
    color:#111827 !important;
}

.search-form input{
    border-radius:50px;
    height:50px;
}

.search-form button{
    border-radius:50px;
}

.cart-badge{
    position:absolute;
    top:-5px;
    right:-10px;
    font-size:11px;
}

/* =========================
   CATEGORY MENU
========================= */

.category-menu{
    overflow-x:auto;
    white-space:nowrap;
}

.category-menu::-webkit-scrollbar{
    display:none;
}

.category-menu .nav-link{
    color:#fff !important;
    padding:12px 18px;
    font-size:14px;
}

.category-menu .nav-link:hover{
    color:#ffc107 !important;
}

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

.hero-section{
    background:linear-gradient(135deg,#111827,#4f46e5);
    padding:100px 0;
    color:#fff;
}

.hero-section h1{
    font-size:55px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-section p{
    font-size:20px;
    opacity:.9;
}

.hero-section .btn{
    border-radius:50px;
    padding:14px 35px;
    font-size:18px;
}

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

h2{
    font-weight:700;
    margin-bottom:25px;
}

/* =========================
   CATEGORY CARDS
========================= */

.card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card-img-top{
    height:180px;
    object-fit:cover;
}

.card-body{
    padding:15px;
}

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

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-body{
    padding:20px;
}

.product-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

.product-price{
    color:#dc2626;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.product-card .btn{
    border-radius:10px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.newsletter-box h3{
    font-weight:700;
}

.newsletter-box input{
    height:50px;
}

.newsletter-box button{
    height:50px;
}

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

.btn-dark{
    background:#111827;
    border:none;
}

.btn-dark:hover{
    background:#000;
}

.btn-warning{
    color:#000;
    font-weight:600;
}

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

.table{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
}

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

.form-control{
    border-radius:10px;
}

.form-control:focus{
    box-shadow:none;
    border-color:#4f46e5;
}

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

.footer-section{
    background:#111827;
    color:#fff;
    padding:60px 0 30px;
}

.footer-section h5,
.footer-section h6{
    color:#fff;
}

.footer-section a{
    color:#cbd5e1;
}

.footer-section a:hover{
    color:#ffc107;
}

.social-icons a{
    color:#fff;
    font-size:22px;
    margin-right:15px;
}

.social-icons a:hover{
    color:#ffc107;
}

.footer-section hr{
    border-color:rgba(255,255,255,.15);
}

/* =========================
   SEARCH RESULT BOX
========================= */

#searchResults{
    position:absolute;
    width:100%;
    z-index:9999;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

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

@media(max-width:768px){

.hero-section{
    padding:60px 20px;
    text-align:center;
}

.hero-section h1{
    font-size:34px;
}

.hero-section p{
    font-size:16px;
}

.card-img-top{
    height:130px;
}

.product-price{
    font-size:18px;
}

.newsletter-box{
    padding:25px;
}

}