/* --- 1. BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #feffdf; /* Light yellow background */
    color: #333;
}

/* --- 2. STICKY NAVBAR --- */
.top-bar {
    background-color: #333;
    padding: 5px 0;
    text-align: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}

.navbar {
    background-color: #ff7b00; /* Solid orange as per screenshot */
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-buttons {
    display: flex;
    gap: 5px;
}

.nav-buttons button, .nav-btn {
    background: white;
    color: #ff7b00;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* --- 3. FILTER & SEARCH --- */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.filter-buttons button {
    padding: 6px 15px;
    border: 1px solid #ff7b00;
    background: white;
    color: #ff7b00;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.filter-buttons button.active {
    background: #ff7b00;
    color: white;
}

#searchInput {
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    display: block;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* --- 4. TWO-COLUMN CARDS LAYOUT --- */
.section-title {
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.dogs {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Do cards aik side par */
    gap: 10px;
    padding: 10px;
}

.dog-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dog-card img {
    width: 100%;
    height: 150px; /* Choti height taake do cards fit aayein */
    object-fit: cover;
    border-radius: 5px;
}

.dog-card h3 {
    font-size: 14px;
    margin: 10px 0 5px;
}

.price-tag {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
}

.download-btn {
    background: #f0f0f0;
    color: #555;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    width: 100%;
}

/* --- 5. DROPDOWN --- */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    right: 15px;
    top: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1001;
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 400px) {
    .dogs {
        gap: 5px;
        padding: 5px;
    }
    .dog-card {
        padding: 5px;
    }
    .dog-card img {
        height: 120px;
    }
}