/* Reset & Body */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* Navbar / Header */
.navbar {
    background: #111;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.3s;
}
.navbar a:hover {
    color: #ff9900;
}

/* Header Contact Info */
.header-contact {
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg,#222,#444);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 5px solid #ff9900;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero form select {
    width: 200px;
    margin: 10px 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Container */
.container {
    width: 90%;
    margin: auto;
    padding: 20px 0;
}

/* Grid for shops / products */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card h3 {
    margin-top: 0;
}
.card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    background: #ff9900;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}
.btn:hover {
    background: #e88e00;
}

/* Popular Shops */
.popular {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.popular a {
    background: #ff9900;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.popular a:hover {
    background: #e88e00;
}

/* Form Inputs */
input, select, textarea {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* No Shops / Products Message */
.no-shops {
    color: #ff0000;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}
.footer a {
    color: #ff9900;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media(max-width:768px){
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 2rem;
    }
}