
    .honey-form-container {
        max-width: 700px;
        margin: 2rem auto;
        padding: 2rem;
        background: #fff8e1;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        border: 1px solid #ffd54f;
    }
    
    .honey-form-title {
        text-align: center;
        color: #5d4037;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        border-bottom: 2px solid #ffd54f;
        padding-bottom: 0.5rem;
    }
    
    .honey-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #5d4037;
    }
    
    .form-control {
        padding: 12px 15px;
        border: 1px solid #ffd54f;
        border-radius: 4px;
        font-size: 1rem;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: #ffb300;
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-submit {
        background: #ffb300;
        color: #5d4037;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .form-submit:hover {
        background: #ffa000;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .honey-listings {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .honey-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    
    .honey-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .honey-card-image {
        height: 200px;
        overflow: hidden;
    }
    
    .honey-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s;
    }
    
    .honey-card:hover .honey-card-image img {
        transform: scale(1.05);
    }
    
    .honey-card-content {
        padding: 1.5rem;
    }
    
    .honey-card-title {
        font-size: 1.3rem;
        color: #5d4037;
        margin-bottom: 0.5rem;
    }
    
    .honey-card-contact {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    .honey-card-contact a {
        color: #ffb300;
        text-decoration: none;
        margin-bottom: 0.3rem;
    }
    
    .honey-card-contact a:hover {
        text-decoration: underline;
    }
    
    .honey-card-message {
        font-style: italic;
        color: #666;
        margin-top: 0.5rem;
    }
    
    .honey-section-title {
        text-align: center;
        font-size: 2rem;
        color: #5d4037;
        margin: 2rem 0;
        padding-bottom: 1rem;
        border-bottom: 3px solid #ffb300;
    }
    
    .honey-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        border-bottom: 2px solid #ffd54f;
    }
    
    .honey-tab {
        padding: 12px 30px;
        background: #fff8e1;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        color: #5d4037;
        transition: all 0.3s;
    }
    
    .honey-tab.active {
        background: #ffb300;
        color: white;
    }
    
    .honey-tab:not(.active):hover {
        background: #ffd54f;
    }
    
    .honey-notice {
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
        text-align: center;
        font-weight: 600;
    }
    
    .honey-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .honey-error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    .status-badge {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 0.8rem;
        font-weight: bold;
        margin-left: 10px;
    }
    
    .status-pending {
        background: #ffd54f;
        color: #5d4037;
    }
    
    .status-approved {
        background: #4caf50;
        color: white;
    }
    
    .status-rejected {
        background: #f44336;
        color: white;
    }
    
    .admin-status-controls {
        display: flex;
        gap: 5px;
        margin-top: 10px;
    }
    
    .admin-status-btn {
        padding: 5px 10px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        font-size: 0.8rem;
    }
    
    .btn-approve {
        background: #4caf50;
        color: white;
    }
    
    .btn-reject {
        background: #f44336;
        color: white;
    }
    
    .btn-pending {
        background: #ffd54f;
        color: #5d4037;
    }
    
    @media (max-width: 768px) {
        .honey-form-container {
            padding: 1.5rem;
        }
        
        .honey-listings {
            grid-template-columns: 1fr;
        }
    }
    