/* General Setup */
.container { max-width: 1300px; margin: 0 auto; padding: 0 15px; }
body { background-color: #fff; margin: 0; font-family: 'Poppins', sans-serif; }

/* Header Styling */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 50px; }

/* Search Box Design */
.search-container {
    position: relative;
    flex: 0 0 40%;
    display: flex;
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-left: none;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

/* Search Dropdown (Hidden by default) */
.search-dropdown {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 999;
    border: 1px solid #f1f1f1;
}

.search-dropdown h4 { color: #888; font-size: 14px; margin-bottom: 10px; }

.tags span {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #eee;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.tags span:hover { background: #1B4D3E; color: #D4AF37; border-color: #D4AF37; }

/* Icons Hover Animation */
.header-icons { display: flex; gap: 20px; }
.icon-item {
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    color: #333;
}

.icon-item i { font-size: 20px; display: block; margin-bottom: 4px; transition: 0.3s; }
.icon-item span { font-size: 11px; }

.icon-item:hover i {
    color: #1B4D3E; /* Green from logo */
    transform: translateY(-3px);
}

.icon-item:hover { color: #D4AF37; } /* Gold on hover */

.badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: #D4AF37;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Responsive Mobile Setup */
@media (max-width: 768px) {
    .search-container, .icon-item span { display: none; }
    .mobile-menu-btn { display: block; font-size: 24px; }
    .logo img { height: 35px; }
}