/* ===========================
   Best Price Picks
   Version 1.0
=========================== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    color:#222;
    line-height:1.6;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#131921;
    color:white;
    padding:18px 0;
}

.logo{
    font-size:32px;
    font-weight:bold;
}

.tagline{
    color:#ddd;
    font-size:14px;
    margin-top:5px;
}

/* Navigation */

nav{
    background:#232f3e;
}

nav ul{
    display:flex;
    list-style:none;
    overflow-x:auto;
    white-space:nowrap;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

nav ul::-webkit-scrollbar{
    display:none;
}

nav li{
    flex:0 0 auto;
    padding:15px 18px;

}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#ff9900;
}

/* Hero Section */

.hero{
    background:white;
    padding:50px;
    text-align:center;
    margin:30px 0;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    color:#555;
    font-size:18px;
}

/* Search Box */

.search-box{
    margin-top:25px;
}

.search-box input{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

/* Categories */

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin:40px 0;
}

.category-card{
    background:white;
    padding:20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

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

.category-card h3{
    margin-top:10px;
}

/* Buttons */

.btn{
    display:inline-block;
    background:#ff9900;
    color:white;
    padding:12px 20px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    margin-top:15px;
}

.btn:hover{
    background:#e67e00;
}

/* Footer */

footer{
    background:#131921;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

footer a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}
